Package dev.nm.stat.test.timeseries.adf
Enum ADFAsymptoticDistribution1.Type
- java.lang.Object
-
- java.lang.Enum<ADFAsymptoticDistribution1.Type>
-
- dev.nm.stat.test.timeseries.adf.ADFAsymptoticDistribution1.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<ADFAsymptoticDistribution1.Type>
- Enclosing class:
- ADFAsymptoticDistribution1
public static enum ADFAsymptoticDistribution1.Type extends Enum<ADFAsymptoticDistribution1.Type>
the available types of Dickey-Fuller tests
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUGMENTED_DICKEY_FULLER
the augmented version of the Dickey-Fuller testDICKEY_FULLER
the original version of the Dickey-Fuller test, developed in 1979
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ADFAsymptoticDistribution1.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static ADFAsymptoticDistribution1.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DICKEY_FULLER
public static final ADFAsymptoticDistribution1.Type DICKEY_FULLER
the original version of the Dickey-Fuller test, developed in 1979
-
AUGMENTED_DICKEY_FULLER
public static final ADFAsymptoticDistribution1.Type AUGMENTED_DICKEY_FULLER
the augmented version of the Dickey-Fuller test
-
-
Method Detail
-
values
public static ADFAsymptoticDistribution1.Type[] 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 (ADFAsymptoticDistribution1.Type c : ADFAsymptoticDistribution1.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ADFAsymptoticDistribution1.Type 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
-
-