public enum UsageFilter extends Enum<UsageFilter>
| Enum Constant and Description |
|---|
ANY |
ONLY_SUT |
ONLY_THIRD_PARTY |
| Modifier and Type | Method and Description |
|---|---|
static UsageFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UsageFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UsageFilter ANY
public static final UsageFilter ONLY_SUT
public static final UsageFilter ONLY_THIRD_PARTY
public static UsageFilter[] values()
for (UsageFilter c : UsageFilter.values()) System.out.println(c);
public static UsageFilter 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 © 2016–2024. All rights reserved.