public enum ScaleType extends Enum<ScaleType>
| Enum Constant and Description |
|---|
INTERVAL |
NOMINAL |
NONE |
ORDINAL |
RATIO |
| Modifier and Type | Method and Description |
|---|---|
String |
getAbbreviation() |
static ScaleType[] |
getAllTypes() |
DataType |
getDefaultEncoding() |
String |
getName() |
static ScaleType |
getTypeByAbbreviation(String abbreviation) |
static ScaleType |
getTypeByName(String name) |
static ScaleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScaleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScaleType NONE
public static final ScaleType NOMINAL
public static final ScaleType ORDINAL
public static final ScaleType INTERVAL
public static final ScaleType RATIO
public static ScaleType[] values()
for (ScaleType c : ScaleType.values()) System.out.println(c);
public static ScaleType 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 nullpublic String getName()
public String getAbbreviation()
public DataType getDefaultEncoding()
public static final ScaleType[] getAllTypes()
Copyright © 2016. All rights reserved.