public enum ConnectivityMode extends Enum<ConnectivityMode>
| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
isRemote() |
static ConnectivityMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnectivityMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectivityMode LOCAL
public static final ConnectivityMode REMOTE
public static ConnectivityMode[] values()
for (ConnectivityMode c : ConnectivityMode.values()) System.out.println(c);
public static ConnectivityMode 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 abstract boolean isRemote()
Copyright © 2010-2015 anotheria.net. All Rights Reserved.