Package com.axway.apim.adapter.apis
Enum APIFilter.POLICY_TRANSLATION
- java.lang.Object
-
- java.lang.Enum<APIFilter.POLICY_TRANSLATION>
-
- com.axway.apim.adapter.apis.APIFilter.POLICY_TRANSLATION
-
- All Implemented Interfaces:
Serializable,Comparable<APIFilter.POLICY_TRANSLATION>
- Enclosing class:
- APIFilter
public static enum APIFilter.POLICY_TRANSLATION extends Enum<APIFilter.POLICY_TRANSLATION>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static APIFilter.POLICY_TRANSLATIONvalueOf(String name)Returns the enum constant of this type with the specified name.static APIFilter.POLICY_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.POLICY_TRANSLATION NONE
-
TO_KEY
public static final APIFilter.POLICY_TRANSLATION TO_KEY
-
TO_NAME
public static final APIFilter.POLICY_TRANSLATION TO_NAME
-
-
Method Detail
-
values
public static APIFilter.POLICY_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.POLICY_TRANSLATION c : APIFilter.POLICY_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.POLICY_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
-
-