public enum CurveId extends Enum<CurveId>
| Enum Constant and Description |
|---|
LINEAR |
QUADRATIC |
QUADRATIC_CURATION |
SQUARE_ROOT |
| Modifier and Type | Method and Description |
|---|---|
static CurveId |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CurveId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CurveId QUADRATIC
public static final CurveId QUADRATIC_CURATION
public static final CurveId LINEAR
public static final CurveId SQUARE_ROOT
public static CurveId[] values()
for (CurveId c : CurveId.values()) System.out.println(c);
public static CurveId 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 © 2019. All rights reserved.