public enum EnumNoMoreDataAction extends Enum<EnumNoMoreDataAction>
Enum Constant and Description |
---|
DELETE_FILE |
PRESERVE_FILE |
RENAME_FILE |
RESIZE_FILE |
Modifier and Type | Method and Description |
---|---|
static EnumNoMoreDataAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumNoMoreDataAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumNoMoreDataAction DELETE_FILE
public static final EnumNoMoreDataAction RESIZE_FILE
public static final EnumNoMoreDataAction RENAME_FILE
public static final EnumNoMoreDataAction PRESERVE_FILE
public static EnumNoMoreDataAction[] values()
for (EnumNoMoreDataAction c : EnumNoMoreDataAction.values()) System.out.println(c);
public static EnumNoMoreDataAction 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 © 2007-2012 Luc Peuvrier. All Rights Reserved.