public enum ExtendImagePolicy extends Enum<ExtendImagePolicy>
Enum Constant and Description |
---|
EXTEND_ACCESS
Always extend disk image automatically.
|
EXTEND_ASK
Ask the user, if he wants to extend disk image.
|
EXTEND_NEVER
Never extend disk image.
|
Modifier and Type | Method and Description |
---|---|
static ExtendImagePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtendImagePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtendImagePolicy EXTEND_NEVER
public static final ExtendImagePolicy EXTEND_ASK
public static final ExtendImagePolicy EXTEND_ACCESS
public static ExtendImagePolicy[] values()
for (ExtendImagePolicy c : ExtendImagePolicy.values()) System.out.println(c);
public static ExtendImagePolicy 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 © 2018 Ken Händel. All rights reserved.