public static enum VCS.Status extends Enum<VCS.Status>
Enum Constant and Description |
---|
STATUS_ADDED |
STATUS_DELETED |
STATUS_MODIFIED |
STATUS_NORMAL |
Modifier and Type | Method and Description |
---|---|
static VCS.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VCS.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VCS.Status STATUS_NORMAL
public static final VCS.Status STATUS_ADDED
public static final VCS.Status STATUS_MODIFIED
public static final VCS.Status STATUS_DELETED
public static VCS.Status[] values()
for (VCS.Status c : VCS.Status.values()) System.out.println(c);
public static VCS.Status 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.