public static enum FileFormat.Family extends Enum<FileFormat.Family>
Modifier and Type | Method and Description |
---|---|
static FileFormat.Family |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileFormat.Family[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileFormat.Family BITMAP
public static final FileFormat.Family VECTOR
public static final FileFormat.Family TEXT
public static final FileFormat.Family UNKNOWN
public static FileFormat.Family[] values()
for (FileFormat.Family c : FileFormat.Family.values()) System.out.println(c);
public static FileFormat.Family 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 null