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