public enum FeatureClass extends Enum<FeatureClass>
| Modifier and Type | Method and Description |
|---|---|
static FeatureClass |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FeatureClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeatureClass A
public static final FeatureClass H
public static final FeatureClass L
public static final FeatureClass P
public static final FeatureClass R
public static final FeatureClass S
public static final FeatureClass T
public static final FeatureClass U
public static final FeatureClass V
public static FeatureClass[] values()
for (FeatureClass c : FeatureClass.values()) System.out.println(c);
public static FeatureClass 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 © 2010–2016 The Apache Software Foundation. All rights reserved.