public enum NetworkWeightSelection extends Enum<NetworkWeightSelection>
| Enum Constant and Description |
|---|
All |
Immutable |
ImmutableAndThenMutable |
Mutable |
| Modifier and Type | Method and Description |
|---|---|
static NetworkWeightSelection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NetworkWeightSelection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NetworkWeightSelection All
public static final NetworkWeightSelection Immutable
public static final NetworkWeightSelection Mutable
public static final NetworkWeightSelection ImmutableAndThenMutable
public static NetworkWeightSelection[] values()
for (NetworkWeightSelection c : NetworkWeightSelection.values()) System.out.println(c);
public static NetworkWeightSelection 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 © 2018. All Rights Reserved.