public enum FUMResponseStatus extends Enum<FUMResponseStatus>
| Enum Constant and Description |
|---|
ACCEPTED
FUM accepted the file
|
DENIED
FUM denied the file
|
POSTPONED
FUM handling is postponed
|
| Modifier and Type | Method and Description |
|---|---|
static FUMResponseStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FUMResponseStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FUMResponseStatus ACCEPTED
public static final FUMResponseStatus DENIED
public static final FUMResponseStatus POSTPONED
public static FUMResponseStatus[] values()
for (FUMResponseStatus c : FUMResponseStatus.values()) System.out.println(c);
public static FUMResponseStatus 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 © 2024 Gentics Software. All rights reserved.