- name(String) - Method in interface ratpack.http.HttpMethod
-
Returns true if the method has the given name, insensitive to case.
- named(String, NoArgAction) - 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
-
Implementations of this interface bound with Guice will be automatically registered as handlebars helpers.
- nestLeft(T) - Method in class ratpack.func.Pair
-
Creates a new pair, with pair(t, this.left)
as the left item and the the right value of this
as the right.
- nestRight(T) - Method in class ratpack.func.Pair
-
Creates a new pair, with pair(t, this.right)
as the right item and the the left value of this
as the left.
- 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.
- NoArgAction - Interface in ratpack.func
-
An action that takes no arguments.
- 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 interface ratpack.func.Action
-
Returns an action that does precisely nothing.
- noopIfNull(Action<T>) - Static method in interface ratpack.func.Action
-
If the given action is
null
, returns
Action.noop()
, otherwise returns the given action.
- noOptParser() - Static method in class ratpack.jackson.Jackson.Init
-
The no-opts parser.
- noOptParser() - Method in class ratpack.jackson.JacksonModule
-
- NoOptParserSupport - Class in ratpack.parse
-
A convenience base for parsers that don't require options.
- NoOptParserSupport(String) - Constructor for class ratpack.parse.NoOptParserSupport
-
Constructor.
- 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.
- NoSuitableHandleMethodException(Class<?>, SecurityException) - Constructor for exception ratpack.handling.InjectionHandler.NoSuitableHandleMethodException
-
- 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.