Enum SimpleReasonerSetup.RecomputeMode
- java.lang.Object
-
- java.lang.Enum<SimpleReasonerSetup.RecomputeMode>
-
- edu.cornell.mannlib.vitro.webapp.servlet.setup.SimpleReasonerSetup.RecomputeMode
-
- All Implemented Interfaces:
Serializable,Comparable<SimpleReasonerSetup.RecomputeMode>
- Enclosing class:
- SimpleReasonerSetup
public static enum SimpleReasonerSetup.RecomputeMode extends Enum<SimpleReasonerSetup.RecomputeMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BACKGROUNDFOREGROUND
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SimpleReasonerSetup.RecomputeModevalueOf(String name)Returns the enum constant of this type with the specified name.static SimpleReasonerSetup.RecomputeMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FOREGROUND
public static final SimpleReasonerSetup.RecomputeMode FOREGROUND
-
BACKGROUND
public static final SimpleReasonerSetup.RecomputeMode BACKGROUND
-
-
Method Detail
-
values
public static SimpleReasonerSetup.RecomputeMode[] 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 (SimpleReasonerSetup.RecomputeMode c : SimpleReasonerSetup.RecomputeMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SimpleReasonerSetup.RecomputeMode 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
-
-