public enum FilterScope extends Enum<FilterScope>
Java class for FilterScope.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="FilterScope">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Everything"/>
<enumeration value="Mine"/>
<enumeration value="Queue"/>
<enumeration value="Delegated"/>
<enumeration value="MyTerritory"/>
<enumeration value="MyTeamTerritory"/>
<enumeration value="Team"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DELEGATED |
EVERYTHING |
MINE |
MY_TEAM_TERRITORY |
MY_TERRITORY |
QUEUE |
TEAM |
| Modifier and Type | Method and Description |
|---|---|
static FilterScope |
fromValue(String v) |
String |
value() |
static FilterScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterScope EVERYTHING
public static final FilterScope MINE
public static final FilterScope QUEUE
public static final FilterScope DELEGATED
public static final FilterScope MY_TERRITORY
public static final FilterScope MY_TEAM_TERRITORY
public static final FilterScope TEAM
public static FilterScope[] values()
for (FilterScope c : FilterScope.values()) System.out.println(c);
public static FilterScope 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 value()
public static FilterScope fromValue(String v)
Copyright © 2016. All rights reserved.