Enum YasmeenGlobalParameters.Performance
- java.lang.Object
-
- java.lang.Enum<YasmeenGlobalParameters.Performance>
-
- org.gcube.dataanalysis.executor.nodes.transducers.bionym.utils.YasmeenGlobalParameters.Performance
-
- All Implemented Interfaces:
Serializable,Comparable<YasmeenGlobalParameters.Performance>
- Enclosing class:
- YasmeenGlobalParameters
public static enum YasmeenGlobalParameters.Performance extends Enum<YasmeenGlobalParameters.Performance>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HIGH_SPEEDLOW_SPEEDMAX_ACCURACYMAX_SPEEDMEDIUM_SPEED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static YasmeenGlobalParameters.PerformancevalueOf(String name)Returns the enum constant of this type with the specified name.static YasmeenGlobalParameters.Performance[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MAX_ACCURACY
public static final YasmeenGlobalParameters.Performance MAX_ACCURACY
-
LOW_SPEED
public static final YasmeenGlobalParameters.Performance LOW_SPEED
-
MEDIUM_SPEED
public static final YasmeenGlobalParameters.Performance MEDIUM_SPEED
-
HIGH_SPEED
public static final YasmeenGlobalParameters.Performance HIGH_SPEED
-
MAX_SPEED
public static final YasmeenGlobalParameters.Performance MAX_SPEED
-
-
Method Detail
-
values
public static YasmeenGlobalParameters.Performance[] 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 (YasmeenGlobalParameters.Performance c : YasmeenGlobalParameters.Performance.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static YasmeenGlobalParameters.Performance 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
-
-