public static enum StorageFormatInfo.Category extends Enum<StorageFormatInfo.Category>
Enum Constant and Description |
---|
BUILTIN
Built-in storage formats.
|
CUSTOM
Custom storage formats.
|
Modifier and Type | Method and Description |
---|---|
static StorageFormatInfo.Category |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StorageFormatInfo.Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageFormatInfo.Category BUILTIN
public static final StorageFormatInfo.Category CUSTOM
public static StorageFormatInfo.Category[] values()
for (StorageFormatInfo.Category c : StorageFormatInfo.Category.values()) System.out.println(c);
public static StorageFormatInfo.Category 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 © 2011–2019 Asakusa Framework Team. All rights reserved.