public enum TicketState extends Enum<TicketState>
Enum Constant and Description |
---|
INVALID |
NOT_PRINTED |
PRINTED |
Modifier and Type | Method and Description |
---|---|
boolean |
isValid() |
static TicketState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TicketState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TicketState PRINTED
public static final TicketState NOT_PRINTED
public static final TicketState INVALID
public static TicketState[] values()
for (TicketState c : TicketState.values()) System.out.println(c);
public static TicketState 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 isValid()
Copyright © 2021. All rights reserved.