public enum StatusSubmit extends Enum<StatusSubmit>
| Enum Constant and Description |
|---|
OKAY
Action was accepted.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isSuccess()
Returns whether or not the action was accepted.
|
static StatusSubmit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatusSubmit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatusSubmit OKAY
public static StatusSubmit[] values()
for (StatusSubmit c : StatusSubmit.values()) System.out.println(c);
public static StatusSubmit 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 nullpublic boolean isSuccess()
Copyright © 2023 OBM, LLC. All rights reserved.