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 SummaryEnum Constants Enum Constant Description content_validationlabel_validationreference_integrity
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static EveryNCounter.GroupvalueOf(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_validationpublic static final EveryNCounter.Group content_validation 
 - 
label_validationpublic static final EveryNCounter.Group label_validation 
 - 
reference_integritypublic static final EveryNCounter.Group reference_integrity 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-