public enum TccParticipantStatus extends java.lang.Enum<TccParticipantStatus>
Enum Constant and Description |
---|
Active |
Cancelled |
Cancelling |
Confirmed |
Confirming |
FailedToCancel |
FailedToConfirm |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static TccParticipantStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TccParticipantStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final TccParticipantStatus Active
public static final TccParticipantStatus Confirming
public static final TccParticipantStatus Confirmed
public static final TccParticipantStatus FailedToConfirm
public static final TccParticipantStatus Cancelling
public static final TccParticipantStatus Cancelled
public static final TccParticipantStatus FailedToCancel
public static TccParticipantStatus[] values()
for (TccParticipantStatus c : TccParticipantStatus.values()) System.out.println(c);
public static TccParticipantStatus 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 nullpublic java.lang.String getValue()
Copyright © 2022, Oracle and/or its affiliates.