Package moa.capabilities
Enum Capability
- java.lang.Object
-
- java.lang.Enum<Capability>
-
- moa.capabilities.Capability
-
- All Implemented Interfaces:
Serializable
,Comparable<Capability>
public enum Capability extends Enum<Capability>
Class enumerating the different possible capabilities of objects in MOA.- Author:
- Corey Sterling (csterlin at waikato dot ac dot nz)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description VIEW_EXPERIMENTAL
VIEW_LITE
VIEW_STANDARD
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Capability
forShortName(String shortName)
static String[]
stringValues()
Creates an array of the string representation of each value.String
toString()
static Capability
valueOf(String name)
Returns the enum constant of this type with the specified name.static Capability[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VIEW_STANDARD
public static final Capability VIEW_STANDARD
-
VIEW_LITE
public static final Capability VIEW_LITE
-
VIEW_EXPERIMENTAL
public static final Capability VIEW_EXPERIMENTAL
-
-
Method Detail
-
values
public static Capability[] 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 (Capability c : Capability.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Capability 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:
toString
in classEnum<Capability>
-
stringValues
public static String[] stringValues()
Creates an array of the string representation of each value.- Returns:
- The array of strings.
-
forShortName
public static Capability forShortName(String shortName)
-
-