public static enum VcsShowConfirmationOption.Value extends java.lang.Enum<VcsShowConfirmationOption.Value>
Enum Constant and Description |
---|
DO_ACTION_SILENTLY |
DO_NOTHING_SILENTLY |
SHOW_CONFIRMATION |
Modifier and Type | Method and Description |
---|---|
static VcsShowConfirmationOption.Value |
fromString(java.lang.String s) |
java.lang.String |
toString() |
static VcsShowConfirmationOption.Value |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VcsShowConfirmationOption.Value[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VcsShowConfirmationOption.Value SHOW_CONFIRMATION
public static final VcsShowConfirmationOption.Value DO_NOTHING_SILENTLY
public static final VcsShowConfirmationOption.Value DO_ACTION_SILENTLY
public static VcsShowConfirmationOption.Value[] values()
for (VcsShowConfirmationOption.Value c : VcsShowConfirmationOption.Value.values()) System.out.println(c);
public static VcsShowConfirmationOption.Value valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<VcsShowConfirmationOption.Value>
public static VcsShowConfirmationOption.Value fromString(java.lang.String s)