public enum ErrorControlLevel extends Enum<ErrorControlLevel>
| Enum Constant and Description | 
|---|
| EC_HighHigh. | 
| EC_MediumMedium. | 
| EC_NoneNone. | 
| Modifier and Type | Method and Description | 
|---|---|
| static ErrorControlLevel | fromString(String text)Returns the ErrorControlLevel enumeration for the specified text or null if no enumeration matches the specified text. | 
| String | getValue()Returns the string representation of the enumeration member. | 
| static ErrorControlLevel | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ErrorControlLevel[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ErrorControlLevel EC_High
public static final ErrorControlLevel EC_Medium
public static final ErrorControlLevel EC_None
public static ErrorControlLevel[] values()
for (ErrorControlLevel c : ErrorControlLevel.values()) System.out.println(c);
public static ErrorControlLevel valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic String getValue()
public static ErrorControlLevel fromString(String text)
text - text representation of the specified enumeration member.
				© 2016 ZIH Corp. All Rights Reserved.