Package network.oxalis.outbound.lookup
Enum LookupConf
- java.lang.Object
-
- java.lang.Enum<LookupConf>
-
- network.oxalis.outbound.lookup.LookupConf
-
- All Implemented Interfaces:
Serializable,Comparable<LookupConf>
@Title("Lookup") public enum LookupConf extends Enum<LookupConf>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PINT_WILDCARD_MIGRATION_PHASE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LookupConfvalueOf(String name)Returns the enum constant of this type with the specified name.static LookupConf[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PINT_WILDCARD_MIGRATION_PHASE
@Path("oxalis.pint.wildcard.migration.phase") @DefaultValue("0") public static final LookupConf PINT_WILDCARD_MIGRATION_PHASE
-
-
Method Detail
-
values
public static LookupConf[] 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 (LookupConf c : LookupConf.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LookupConf 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
-
-