public enum ReIndexError extends Enum<ReIndexError>
Enum Constant and Description |
---|
NOT_ENOUGH_DISK_SPACE_LOCAL_HOME |
NOT_ENOUGH_DISK_SPACE_SHARED_HOME |
NOT_WRITABLE_LOCAL_HOME |
NOT_WRITABLE_SHARED_HOME |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static ReIndexError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReIndexError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReIndexError NOT_ENOUGH_DISK_SPACE_LOCAL_HOME
public static final ReIndexError NOT_ENOUGH_DISK_SPACE_SHARED_HOME
public static final ReIndexError NOT_WRITABLE_LOCAL_HOME
public static final ReIndexError NOT_WRITABLE_SHARED_HOME
public static final ReIndexError UNKNOWN
public static ReIndexError[] values()
for (ReIndexError c : ReIndexError.values()) System.out.println(c);
public static ReIndexError 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 © 2003–2020 Atlassian. All rights reserved.