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