public enum TicketRestriction extends Enum<TicketRestriction>
| Enum Constant and Description |
|---|
ASSIGNED |
GROUPS |
ORGANIZATION |
REQUESTED |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static TicketRestriction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TicketRestriction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TicketRestriction ORGANIZATION
public static final TicketRestriction GROUPS
public static final TicketRestriction ASSIGNED
public static final TicketRestriction REQUESTED
public static TicketRestriction[] values()
for (TicketRestriction c : TicketRestriction.values()) System.out.println(c);
public static TicketRestriction 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 toString()
toString in class Enum<TicketRestriction>Copyright © 2013–2020. All rights reserved.