- name(String) - Method in interface ratpack.http.HttpMethod
-
Returns true if the method has the given name, insensitive to case.
- named(String, Closure<?>) - Method in interface ratpack.groovy.handling.GroovyByMethodSpec
-
Defines the action to to take if the request has a HTTP method of methodName
.
- named(String, Handler) - Method in interface ratpack.handling.ByMethodSpec
-
Defines the action to to take if the request has a HTTP method of methodName
.
- NamedHealthCheck - Class in ratpack.codahale.metrics
-
A named application health check.
- NamedHealthCheck() - Constructor for class ratpack.codahale.metrics.NamedHealthCheck
-
- NamedHelper<T> - Interface in ratpack.handlebars
-
Instances of classes implementing this interface bound to the module registry will be automatically
registered as handlebars helpers.
- newInjectorFactory(LaunchConfig) - Static method in class ratpack.guice.Guice
-
Creates a transformer that can build an injector from a module.
- NewRelicModule - Class in ratpack.newrelic
-
- NewRelicModule() - Constructor for class ratpack.newrelic.NewRelicModule
-
- NewRelicTransaction - Interface in ratpack.newrelic
-
- next() - Method in interface ratpack.handling.Context
-
Delegate handling to the next handler in line.
- next(Registry) - Method in interface ratpack.handling.Context
-
Invokes the next handler, after adding the given registry.
- next() - Static method in class ratpack.handling.Handlers
-
A handler that simply delegates to the next handler.
- noBaseDir() - Static method in class ratpack.launch.LaunchConfigBuilder
-
Create a new builder, with no base dir.
- NoBaseDirException - Exception in ratpack.launch
-
Thrown when a request is made for the base directory of the application in an application
launch config where no base directory has been set.
- NoBaseDirException(String) - Constructor for exception ratpack.launch.NoBaseDirException
-
Constructor.
- NoHandlerFactoryException - Exception in ratpack.launch
-
- NoHandlerFactoryException(String) - Constructor for exception ratpack.launch.NoHandlerFactoryException
-
Constructor.
- NonBlocking - Annotation Type in ratpack.api
-
Declares that a method is non blocking, making no guarantees about when it will return.
- noop() - Static method in class ratpack.func.Actions
-
Returns an action that does precisely nothing.
- noopIfNull(Action<T>) - Static method in class ratpack.func.Actions
-
If the given action is
null
, returns
Actions.noop()
, otherwise returns the given action.
- NoOptParserSupport - Class in ratpack.parse
-
A convenience base for parsers that don't require options.
- NoOptParserSupport(String) - Constructor for class ratpack.parse.NoOptParserSupport
-
Constructor.
- noPrettyPrint() - Method in class ratpack.jackson.JacksonModule
-
Disables pretty printing by default whe rendering JSON.
- NoSuchModuleException - Exception in ratpack.guice
-
- NoSuchModuleException(Class<? extends Module>) - Constructor for exception ratpack.guice.NoSuchModuleException
-
Constructor.
- NoSuchParserException - Exception in ratpack.parse
-
Thrown when a request is made to parse the request, but no suitable parser was found that matched the content type and parse object.
- NoSuchParserException(TypeToken<?>, Object, String) - Constructor for exception ratpack.parse.NoSuchParserException
-
Constructor.
- NoSuchRendererException - Exception in ratpack.render
-
Thrown when a request is made to render an object, but no suitable renderer can be found.
- NoSuchRendererException(Object) - Constructor for exception ratpack.render.NoSuchRendererException
-
Constructor.
- notFound() - Static method in class ratpack.handling.Handlers
-
- notifySessionInitiated(String) - Method in interface ratpack.session.SessionManager
-
- notifySessionTerminated(String) - Method in interface ratpack.session.SessionManager
-
- NotInRegistryException - Exception in ratpack.registry
-
Thrown when a request is made for an object that a registry cannot provide.
- NotInRegistryException(TypeToken<?>) - Constructor for exception ratpack.registry.NotInRegistryException
-
Constructs the exception.
- NotInRegistryException(String) - Constructor for exception ratpack.registry.NotInRegistryException
-
Constructor.
- Nullable - Annotation Type in ratpack.api
-
Denotes that something may be null.
- NullParseOpts - Class in ratpack.parse
-
A generic parse type that can be used when parsers do not need any extra information from parse objects other than type.