public static enum Label.Prefix extends Enum<Label.Prefix>
| Modifier and Type | Method and Description | 
|---|---|
| static Label.Prefix | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Label.Prefix[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Label.Prefix my
public static final Label.Prefix global
public static final Label.Prefix team
public static final Label.Prefix system
public static Label.Prefix[] values()
for (Label.Prefix c : Label.Prefix.values()) System.out.println(c);
public static Label.Prefix 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 nullCopyright © 2003–2022 Atlassian. All rights reserved.