Package aero.t2s.modes.constants
Enum SourceIntegrityLevel
- java.lang.Object
-
- java.lang.Enum<SourceIntegrityLevel>
-
- aero.t2s.modes.constants.SourceIntegrityLevel
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SourceIntegrityLevel>
public enum SourceIntegrityLevel extends java.lang.Enum<SourceIntegrityLevel>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LESS_THEN_ONE_PER_HUNDRED_THOUSANDLESS_THEN_ONE_PER_TEN_MILLIONLESS_THEN_ONE_PER_THOUSANDUNKNOWN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SourceIntegrityLevelfrom(int code)java.lang.StringtoString()static SourceIntegrityLevelvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SourceIntegrityLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final SourceIntegrityLevel UNKNOWN
-
LESS_THEN_ONE_PER_THOUSAND
public static final SourceIntegrityLevel LESS_THEN_ONE_PER_THOUSAND
-
LESS_THEN_ONE_PER_HUNDRED_THOUSAND
public static final SourceIntegrityLevel LESS_THEN_ONE_PER_HUNDRED_THOUSAND
-
LESS_THEN_ONE_PER_TEN_MILLION
public static final SourceIntegrityLevel LESS_THEN_ONE_PER_TEN_MILLION
-
-
Method Detail
-
values
public static SourceIntegrityLevel[] 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 (SourceIntegrityLevel c : SourceIntegrityLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SourceIntegrityLevel valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
from
public static SourceIntegrityLevel from(int code)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<SourceIntegrityLevel>
-
-