Serializable, Comparable<SemiVariance.Direction>public static enum SemiVariance.Direction extends Enum<SemiVariance.Direction>
| Enum Constant | Description | 
|---|---|
DOWNSIDE | 
 The DOWNSIDE Direction is used to specify that the observations below
 the cutoff point will be used to calculate SemiVariance 
 | 
UPSIDE | 
 The UPSIDE Direction is used to specify that the observations above the
 cutoff point will be used to calculate SemiVariance 
 | 
| Modifier and Type | Method | Description | 
|---|---|---|
static SemiVariance.Direction | 
valueOf(String name) | 
 Returns the enum constant of this type with the specified name. 
 | 
static SemiVariance.Direction[] | 
values() | 
 Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final SemiVariance.Direction UPSIDE
public static final SemiVariance.Direction DOWNSIDE
public static SemiVariance.Direction[] values()
for (SemiVariance.Direction c : SemiVariance.Direction.values()) System.out.println(c);
public static SemiVariance.Direction valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016–2018 Hipparchus.org. All rights reserved.