Package org.openl.rules.enumeration
Enum OriginsEnum
- java.lang.Object
-
- java.lang.Enum<OriginsEnum>
-
- org.openl.rules.enumeration.OriginsEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OriginsEnum>
public enum OriginsEnum extends Enum<OriginsEnum>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OriginsEnumfromString(String displayName)StringtoString()static OriginsEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OriginsEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Base
public static final OriginsEnum Base
-
Deviation
public static final OriginsEnum Deviation
-
-
Method Detail
-
values
public static OriginsEnum[] 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 (OriginsEnum c : OriginsEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OriginsEnum 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<OriginsEnum>
-
fromString
public static OriginsEnum fromString(String displayName)
-
-