Package com.axway.apim.adapter.apis
Enum APIFilter.METHOD_TRANSLATION
- java.lang.Object
-
- java.lang.Enum<APIFilter.METHOD_TRANSLATION>
-
- com.axway.apim.adapter.apis.APIFilter.METHOD_TRANSLATION
-
- All Implemented Interfaces:
Serializable,Comparable<APIFilter.METHOD_TRANSLATION>
- Enclosing class:
- APIFilter
public static enum APIFilter.METHOD_TRANSLATION extends Enum<APIFilter.METHOD_TRANSLATION>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static APIFilter.METHOD_TRANSLATIONvalueOf(String name)Returns the enum constant of this type with the specified name.static APIFilter.METHOD_TRANSLATION[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final APIFilter.METHOD_TRANSLATION NONE
-
AS_NAME
public static final APIFilter.METHOD_TRANSLATION AS_NAME
-
AS_ID
public static final APIFilter.METHOD_TRANSLATION AS_ID
-
-
Method Detail
-
values
public static APIFilter.METHOD_TRANSLATION[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (APIFilter.METHOD_TRANSLATION c : APIFilter.METHOD_TRANSLATION.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static APIFilter.METHOD_TRANSLATION valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-