Package owl.translations.mastertheorem
Enum Normalisation.NormalisationMethod
- java.lang.Object
-
- java.lang.Enum<Normalisation.NormalisationMethod>
-
- owl.translations.mastertheorem.Normalisation.NormalisationMethod
-
- All Implemented Interfaces:
Serializable
,Comparable<Normalisation.NormalisationMethod>
- Enclosing class:
- Normalisation
public static enum Normalisation.NormalisationMethod extends Enum<Normalisation.NormalisationMethod>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SE20_PI_2_AND_FG_PI_1
SE20_SIGMA_2_AND_GF_SIGMA_1
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Normalisation.NormalisationMethod
valueOf(String name)
Returns the enum constant of this type with the specified name.static Normalisation.NormalisationMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SE20_SIGMA_2_AND_GF_SIGMA_1
public static final Normalisation.NormalisationMethod SE20_SIGMA_2_AND_GF_SIGMA_1
-
SE20_PI_2_AND_FG_PI_1
public static final Normalisation.NormalisationMethod SE20_PI_2_AND_FG_PI_1
-
-
Method Detail
-
values
public static Normalisation.NormalisationMethod[] 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 (Normalisation.NormalisationMethod c : Normalisation.NormalisationMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Normalisation.NormalisationMethod 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
-
-