Enum Set.ConfidenceType
- java.lang.Object
-
- java.lang.Enum<Set.ConfidenceType>
-
- com.aoindustries.aoserv.client.net.reputation.Set.ConfidenceType
-
- All Implemented Interfaces:
Serializable,Comparable<Set.ConfidenceType>
- Enclosing class:
- Set
public static enum Set.ConfidenceType extends Enum<Set.ConfidenceType>
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static Set.ConfidenceTypefromChar(char ch)abstract chartoChar()static Set.ConfidenceTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Set.ConfidenceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNCERTAIN
public static final Set.ConfidenceType UNCERTAIN
-
DEFINITE
public static final Set.ConfidenceType DEFINITE
-
-
Method Detail
-
values
public static Set.ConfidenceType[] 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 (Set.ConfidenceType c : Set.ConfidenceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Set.ConfidenceType 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
-
toChar
public abstract char toChar()
-
fromChar
public static Set.ConfidenceType fromChar(char ch)
-
-