public enum DataView extends Enum<DataView>
Enum Constant and Description |
---|
EXPORT |
EXPORT_REDACTED
All passwords and other sensitive fields are marked as REDACTED.
|
FULL |
FULL_WITH_HEALTH_CHECK_EXPLANATION
Entities with health test results and health test explanation.
|
SUMMARY |
Modifier and Type | Method and Description |
---|---|
static DataView |
fromString(String s) |
static DataView |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataView[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataView SUMMARY
public static final DataView FULL
public static final DataView FULL_WITH_HEALTH_CHECK_EXPLANATION
public static final DataView EXPORT
public static final DataView EXPORT_REDACTED
public static DataView[] values()
for (DataView c : DataView.values()) System.out.println(c);
public static DataView 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 © Cloudera, Inc. Released under Apache License, Version 2.0.