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