org.apache.flume.serialization
Enum EventSerializerType
java.lang.Object
java.lang.Enum<EventSerializerType>
org.apache.flume.serialization.EventSerializerType
- All Implemented Interfaces:
- Serializable, Comparable<EventSerializerType>
@InterfaceAudience.Private
@InterfaceStability.Unstable
public enum EventSerializerType
- extends Enum<EventSerializerType>
TEXT
public static final EventSerializerType TEXT
HEADER_AND_TEXT
public static final EventSerializerType HEADER_AND_TEXT
AVRO_EVENT
public static final EventSerializerType AVRO_EVENT
OTHER
public static final EventSerializerType OTHER
values
public static EventSerializerType[] 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 (EventSerializerType c : EventSerializerType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static EventSerializerType 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
getBuilderClass
public Class<? extends EventSerializer.Builder> getBuilderClass()
Copyright © 2009-2013 Apache Software Foundation. All Rights Reserved.