public enum PasspointMatch extends Enum<PasspointMatch>
Enum Constant and Description |
---|
Declined |
HomeProvider |
Incomplete |
None |
RoamingProvider |
Modifier and Type | Method and Description |
---|---|
static PasspointMatch |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PasspointMatch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PasspointMatch HomeProvider
public static final PasspointMatch RoamingProvider
public static final PasspointMatch Incomplete
public static final PasspointMatch None
public static final PasspointMatch Declined
public static PasspointMatch[] values()
for (PasspointMatch c : PasspointMatch.values()) System.out.println(c);
public static PasspointMatch 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 null