public enum SigningStatus extends Enum<SigningStatus>
Enum Constant and Description |
---|
CANCELLED |
ERROR |
IN_PROGRESS |
SIGNED |
Modifier and Type | Method and Description |
---|---|
static SigningStatus |
fromString(String value) |
String |
getValue() |
static SigningStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SigningStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SigningStatus IN_PROGRESS
public static final SigningStatus SIGNED
public static final SigningStatus CANCELLED
public static final SigningStatus ERROR
public static SigningStatus[] values()
for (SigningStatus c : SigningStatus.values()) System.out.println(c);
public static SigningStatus 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 String getValue()
public static final SigningStatus fromString(String value)
Copyright © 2016–2023. All rights reserved.