public enum EnumFileSetConsistencyFlag extends java.lang.Enum<EnumFileSetConsistencyFlag>
| Enum Constant and Description |
|---|
CONSISTENT
no known inconsistencies
|
INCONSISTENT
The FSR or FSU shall assume that inconsistencies are present.
|
| Modifier and Type | Method and Description |
|---|---|
short |
getValue()
Returns the value of this enum.
|
static EnumFileSetConsistencyFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumFileSetConsistencyFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumFileSetConsistencyFlag CONSISTENT
public static final EnumFileSetConsistencyFlag INCONSISTENT
public static EnumFileSetConsistencyFlag[] values()
for (EnumFileSetConsistencyFlag c : EnumFileSetConsistencyFlag.values()) System.out.println(c);
public static EnumFileSetConsistencyFlag valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic short getValue()