public enum InfoToStore extends Enum<InfoToStore>
Enum Constant and Description |
---|
HOSTNAME |
IP_ADDRESS |
MAC_ADDRESS |
OS_VERSION |
VM_INFO |
Modifier and Type | Method and Description |
---|---|
static InfoToStore |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InfoToStore[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InfoToStore IP_ADDRESS
public static final InfoToStore MAC_ADDRESS
public static final InfoToStore HOSTNAME
public static final InfoToStore OS_VERSION
public static final InfoToStore VM_INFO
public static InfoToStore[] values()
for (InfoToStore c : InfoToStore.values()) System.out.println(c);
public static InfoToStore 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 © 2025 Cense Data Inc.. All rights reserved.