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