public enum VCSActionEvent extends Enum<VCSActionEvent>
Enum Constant and Description |
---|
ADD |
CHECKOUT |
COMMIT |
DELETE |
SWITCH |
SWITCH_PATH |
SWITCH_PROTOCOL |
UPDATE |
UPDATE_REPOSITORY |
Modifier and Type | Method and Description |
---|---|
static VCSActionEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VCSActionEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VCSActionEvent CHECKOUT
public static final VCSActionEvent COMMIT
public static final VCSActionEvent UPDATE
public static final VCSActionEvent UPDATE_REPOSITORY
public static final VCSActionEvent SWITCH
public static final VCSActionEvent SWITCH_PROTOCOL
public static final VCSActionEvent SWITCH_PATH
public static final VCSActionEvent DELETE
public static final VCSActionEvent ADD
public static VCSActionEvent[] values()
for (VCSActionEvent c : VCSActionEvent.values()) System.out.println(c);
public static VCSActionEvent 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 © 1999–2020 CodeLutin. All rights reserved.