public enum OffloadCode extends Enum<OffloadCode>
| Enum Constant and Description |
|---|
OFFLOADED
A user explicitly offloaded the node
|
| Modifier and Type | Field and Description |
|---|---|
private String |
description |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static OffloadCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OffloadCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OffloadCode OFFLOADED
private final String description
public static OffloadCode[] values()
for (OffloadCode c : OffloadCode.values()) System.out.println(c);
public static OffloadCode 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 String toString()
toString in class Enum<OffloadCode>Copyright © 2021 Apache NiFi Project. All rights reserved.