Enum SGVMS_Interpolation.methodEnum
- java.lang.Object
-
- java.lang.Enum<SGVMS_Interpolation.methodEnum>
-
- org.gcube.dataanalysis.executor.rscripts.SGVMS_Interpolation.methodEnum
-
- All Implemented Interfaces:
Serializable,Comparable<SGVMS_Interpolation.methodEnum>
- Enclosing class:
- SGVMS_Interpolation
public static enum SGVMS_Interpolation.methodEnum extends Enum<SGVMS_Interpolation.methodEnum>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SGVMS_Interpolation.methodEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static SGVMS_Interpolation.methodEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
cHs
public static final SGVMS_Interpolation.methodEnum cHs
-
SL
public static final SGVMS_Interpolation.methodEnum SL
-
-
Method Detail
-
values
public static SGVMS_Interpolation.methodEnum[] 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 (SGVMS_Interpolation.methodEnum c : SGVMS_Interpolation.methodEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SGVMS_Interpolation.methodEnum 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
-
-