Package wavefront.report
Enum SourceOperationType
- java.lang.Object
-
- java.lang.Enum<SourceOperationType>
-
- wavefront.report.SourceOperationType
-
- All Implemented Interfaces:
Serializable,Comparable<SourceOperationType>,org.apache.avro.generic.GenericContainer,org.apache.avro.generic.GenericEnumSymbol<SourceOperationType>
public enum SourceOperationType extends Enum<SourceOperationType> implements org.apache.avro.generic.GenericEnumSymbol<SourceOperationType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SOURCE_DESCRIPTIONSOURCE_TAG
-
Field Summary
Fields Modifier and Type Field Description static org.apache.avro.SchemaSCHEMA$
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static org.apache.avro.SchemagetClassSchema()org.apache.avro.SchemagetSchema()static SourceOperationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SourceOperationType[]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 interface java.lang.Comparable
compareTo
-
-
-
-
Enum Constant Detail
-
SOURCE_TAG
public static final SourceOperationType SOURCE_TAG
-
SOURCE_DESCRIPTION
public static final SourceOperationType SOURCE_DESCRIPTION
-
-
Method Detail
-
values
public static SourceOperationType[] 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 (SourceOperationType c : SourceOperationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SourceOperationType 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 nameNullPointerException- if the argument is null
-
getClassSchema
public static org.apache.avro.Schema getClassSchema()
-
getSchema
public org.apache.avro.Schema getSchema()
- Specified by:
getSchemain interfaceorg.apache.avro.generic.GenericContainer
-
-