Package gov.nasa.pds.tools.util
Enum EveryNCounter.Group
- java.lang.Object
-
- java.lang.Enum<EveryNCounter.Group>
-
- gov.nasa.pds.tools.util.EveryNCounter.Group
-
- All Implemented Interfaces:
Serializable
,Comparable<EveryNCounter.Group>
- Enclosing class:
- EveryNCounter
public static enum EveryNCounter.Group extends Enum<EveryNCounter.Group>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description content_validation
label_validation
reference_integrity
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EveryNCounter.Group
valueOf(String name)
Returns the enum constant of this type with the specified name.static EveryNCounter.Group[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
content_validation
public static final EveryNCounter.Group content_validation
-
label_validation
public static final EveryNCounter.Group label_validation
-
reference_integrity
public static final EveryNCounter.Group reference_integrity
-
-
Method Detail
-
values
public static EveryNCounter.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 (EveryNCounter.Group c : EveryNCounter.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 EveryNCounter.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
-
-