public enum SystemResource extends Enum<SystemResource>
| Modifier and Type | Method and Description |
|---|---|
static SystemResource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SystemResource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemResource CPU
public static final SystemResource DISK
public static final SystemResource MEMORY
public static final SystemResource NETWORK
public static SystemResource[] values()
for (SystemResource c : SystemResource.values()) System.out.println(c);
public static SystemResource 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 © 2022 Apache NiFi Project. All rights reserved.