org.apache.avro
Enum Schema.Type
java.lang.Object
java.lang.Enum<Schema.Type>
org.apache.avro.Schema.Type
- All Implemented Interfaces:
- Serializable, Comparable<Schema.Type>
- Enclosing class:
- Schema
public static enum Schema.Type
- extends Enum<Schema.Type>
The type of a schema.
Method Summary |
static Schema.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Schema.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
RECORD
public static final Schema.Type RECORD
ENUM
public static final Schema.Type ENUM
ARRAY
public static final Schema.Type ARRAY
MAP
public static final Schema.Type MAP
UNION
public static final Schema.Type UNION
FIXED
public static final Schema.Type FIXED
STRING
public static final Schema.Type STRING
BYTES
public static final Schema.Type BYTES
INT
public static final Schema.Type INT
LONG
public static final Schema.Type LONG
FLOAT
public static final Schema.Type FLOAT
DOUBLE
public static final Schema.Type DOUBLE
BOOLEAN
public static final Schema.Type BOOLEAN
NULL
public static final Schema.Type NULL
values
public static Schema.Type[] 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 (Schema.Type c : Schema.Type.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Schema.Type 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
Copyright © 2011 The Apache Software Foundation. All Rights Reserved.