com.cloudera.api
Enum DataView

java.lang.Object
  extended by java.lang.Enum<DataView>
      extended by com.cloudera.api.DataView
All Implemented Interfaces:
Serializable, Comparable<DataView>

public enum DataView
extends Enum<DataView>


Enum Constant Summary
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
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SUMMARY

public static final DataView SUMMARY

FULL

public static final DataView FULL

FULL_WITH_HEALTH_CHECK_EXPLANATION

public static final DataView FULL_WITH_HEALTH_CHECK_EXPLANATION
Entities with health test results and health test explanation. Generating and transferring health check explanation for entities can be very expensive.


EXPORT

public static final DataView EXPORT

EXPORT_REDACTED

public static final DataView EXPORT_REDACTED
All passwords and other sensitive fields are marked as REDACTED.

Method Detail

values

public static DataView[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (DataView c : DataView.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DataView valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

fromString

public static DataView fromString(String s)


Copyright © Cloudera, Inc. Released under Apache License, Version 2.0.