public static enum RouterFactoryException.ErrorType extends Enum<RouterFactoryException.ErrorType>
Enum Constant and Description |
---|
INVALID_SPEC_PATH
You have provided a wrong directory/path to specification file
|
MISSING_SECURITY_HANDLER
Missing security handler during construction of router
|
OPERATION_ID_NOT_FOUND
You are trying to mount an operation with operation_id not defined in specification
|
PATH_NOT_FOUND
You are trying to mount an operation (combination of path and method) not defined in specification
|
PATH_PARAMETERS_COMBINATION_NOT_SUPPORTED
You are trying to use two or more path parameters with a combination of parameters/name/styles/explode not supported
|
SPEC_INVALID
Specification is not valid
|
WRONG_INTERFACE
You specified an interface not annotated with io.vertx.ext.web.api.generator.WebApiProxyGen while calling
RouterFactory#mountServiceProxy(Class, String) |
Modifier and Type | Method and Description |
---|---|
static RouterFactoryException.ErrorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RouterFactoryException.ErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RouterFactoryException.ErrorType PATH_NOT_FOUND
public static final RouterFactoryException.ErrorType OPERATION_ID_NOT_FOUND
public static final RouterFactoryException.ErrorType SPEC_INVALID
public static final RouterFactoryException.ErrorType MISSING_SECURITY_HANDLER
public static final RouterFactoryException.ErrorType INVALID_SPEC_PATH
public static final RouterFactoryException.ErrorType PATH_PARAMETERS_COMBINATION_NOT_SUPPORTED
public static final RouterFactoryException.ErrorType WRONG_INTERFACE
RouterFactory#mountServiceProxy(Class, String)
public static RouterFactoryException.ErrorType[] values()
for (RouterFactoryException.ErrorType c : RouterFactoryException.ErrorType.values()) System.out.println(c);
public static RouterFactoryException.ErrorType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2024 Eclipse. All rights reserved.