public enum FeatureType extends java.lang.Enum<FeatureType>
| Modifier and Type | Method and Description |
|---|---|
static FeatureType |
forFilename(java.lang.String storyPath) |
java.lang.String |
getExtension() |
java.lang.String |
toString() |
static FeatureType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FeatureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeatureType UNDEFINED
public static final FeatureType FEATURE
public static final FeatureType STORY
public static FeatureType[] values()
for (FeatureType c : FeatureType.values()) System.out.println(c);
public static FeatureType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getExtension()
public java.lang.String toString()
toString in class java.lang.Enum<FeatureType>public static FeatureType forFilename(java.lang.String storyPath)