public enum DeleteHdfsPathResult extends Enum<DeleteHdfsPathResult>
| Modifier and Type | Class and Description |
|---|---|
static class |
DeleteHdfsPathResult.Adapter |
| Enum Constant and Description |
|---|
DELETED |
NOT_DELETED |
NOT_EXISTS |
| Modifier and Type | Method and Description |
|---|---|
static DeleteHdfsPathResult |
fromValue(String input) |
String |
getValue() |
String |
toString() |
static DeleteHdfsPathResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeleteHdfsPathResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="DELETED") public static final DeleteHdfsPathResult DELETED
@SerializedName(value="NOT_DELETED") public static final DeleteHdfsPathResult NOT_DELETED
@SerializedName(value="NOT_EXISTS") public static final DeleteHdfsPathResult NOT_EXISTS
public static DeleteHdfsPathResult[] values()
for (DeleteHdfsPathResult c : DeleteHdfsPathResult.values()) System.out.println(c);
public static DeleteHdfsPathResult 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 getValue()
public String toString()
toString in class Enum<DeleteHdfsPathResult>public static DeleteHdfsPathResult fromValue(String input)
Copyright © 2026. All rights reserved.