Package de.xima.fc.config
Enum EXfcExternalParameter.Group
- java.lang.Object
-
- java.lang.Enum<EXfcExternalParameter.Group>
-
- de.xima.fc.config.EXfcExternalParameter.Group
-
- All Implemented Interfaces:
Serializable
,Comparable<EXfcExternalParameter.Group>
- Enclosing class:
- EXfcExternalParameter
public static enum EXfcExternalParameter.Group extends Enum<EXfcExternalParameter.Group>
external parameter groups.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATABASE
UNSPECIFIED
UPDATE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
in(EXfcExternalParameter.Group... paramGroups)
static EXfcExternalParameter.Group
valueOf(String name)
Returns the enum constant of this type with the specified name.static EXfcExternalParameter.Group[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATABASE
public static final EXfcExternalParameter.Group DATABASE
-
UPDATE
public static final EXfcExternalParameter.Group UPDATE
-
UNSPECIFIED
public static final EXfcExternalParameter.Group UNSPECIFIED
-
-
Method Detail
-
values
public static EXfcExternalParameter.Group[] 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 (EXfcExternalParameter.Group c : EXfcExternalParameter.Group.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EXfcExternalParameter.Group 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
-
in
public boolean in(EXfcExternalParameter.Group... paramGroups)
- Parameters:
paramGroups
- the enum elements to check this against- Returns:
- true if this element is contained in the set of the provided elements, otherwise false
-
-