public static enum IPlayer.IPResolveType extends java.lang.Enum<IPlayer.IPResolveType>
| Enum Constant and Description |
|---|
IpResolveV4
only ip v4
|
IpResolveV6
only ip v6
|
IpResolveWhatEver
default
|
| Modifier and Type | Method and Description |
|---|---|
static IPlayer.IPResolveType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IPlayer.IPResolveType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IPlayer.IPResolveType IpResolveWhatEver
public static final IPlayer.IPResolveType IpResolveV4
public static final IPlayer.IPResolveType IpResolveV6
public static IPlayer.IPResolveType[] values()
for (IPlayer.IPResolveType c : IPlayer.IPResolveType.values()) System.out.println(c);
public static IPlayer.IPResolveType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null