public static enum ImporterDescription.DataSize extends Enum<ImporterDescription.DataSize>
Enum Constant and Description |
---|
LARGE
Large data (200MB~ in uncompressed form).
|
SMALL
Small data (10~200MB in uncompressed form).
|
TINY
Tiny data (~10MB in uncompressed form).
|
UNKNOWN
Unknown or not estimated.
|
Modifier and Type | Method and Description |
---|---|
static ImporterDescription.DataSize |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImporterDescription.DataSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImporterDescription.DataSize UNKNOWN
public static final ImporterDescription.DataSize TINY
public static final ImporterDescription.DataSize SMALL
public static final ImporterDescription.DataSize LARGE
public static ImporterDescription.DataSize[] values()
for (ImporterDescription.DataSize c : ImporterDescription.DataSize.values()) System.out.println(c);
public static ImporterDescription.DataSize 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.