public static enum ApiParameterConfig.Classification extends java.lang.Enum<ApiParameterConfig.Classification>
| Enum Constant and Description |
|---|
API_PARAMETER
Parameter that will be filled by the value of an API parameter.
|
INJECTED
Parameter that will be automatically injected by the SPI framework.
|
RESOURCE
Parameter that will be filled with an API entity.
|
UNKNOWN
Parameter that could not be classified because its type is unknown.
|
| Modifier and Type | Method and Description |
|---|---|
static ApiParameterConfig.Classification |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ApiParameterConfig.Classification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiParameterConfig.Classification INJECTED
public static final ApiParameterConfig.Classification API_PARAMETER
public static final ApiParameterConfig.Classification RESOURCE
public static final ApiParameterConfig.Classification UNKNOWN
public static ApiParameterConfig.Classification[] values()
for (ApiParameterConfig.Classification c : ApiParameterConfig.Classification.values()) System.out.println(c);
public static ApiParameterConfig.Classification valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null