public static enum AbstractFileInfo.Options extends Enum<AbstractFileInfo.Options>
| Enum Constant and Description |
|---|
AS_STRING__FILE_EXTENSION
As string returns the file extension of the file source.
|
AS_STRING_ABSOLUTE_NAME
As string returns the absolute name of the file source.
|
AS_STRING_ABSOLUTE_PATH
As string returns the absolute path of the file source.
|
AS_STRING_BASE_FILE_NAME
As string returns the base name of the file of the file source.
|
AS_STRING_FULL_FILE_NAME
As string returns the full file name of the file source.
|
AS_STRING_ROOT_PATH
As string returns the root path of the file source.
|
AS_STRING_SET_ROOT_NAME
As string returns the set-root name of the file source.
|
AS_STRING_SET_ROOT_PATH
As string returns the set-root path of the file source.
|
| Modifier and Type | Method and Description |
|---|---|
static AbstractFileInfo.Options |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractFileInfo.Options[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractFileInfo.Options AS_STRING_ABSOLUTE_PATH
public static final AbstractFileInfo.Options AS_STRING_ABSOLUTE_NAME
public static final AbstractFileInfo.Options AS_STRING_FULL_FILE_NAME
public static final AbstractFileInfo.Options AS_STRING_BASE_FILE_NAME
public static final AbstractFileInfo.Options AS_STRING__FILE_EXTENSION
public static final AbstractFileInfo.Options AS_STRING_ROOT_PATH
public static final AbstractFileInfo.Options AS_STRING_SET_ROOT_PATH
public static final AbstractFileInfo.Options AS_STRING_SET_ROOT_NAME
public static AbstractFileInfo.Options[] values()
for (AbstractFileInfo.Options c : AbstractFileInfo.Options.values()) System.out.println(c);
public static AbstractFileInfo.Options 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–2017. All rights reserved.