public enum DataRepresentation extends Enum<DataRepresentation>
Modifier and Type | Class and Description |
---|---|
static class |
DataRepresentation.Base
The default value that is assumed for unspecified values.
|
Enum Constant and Description |
---|
DENSE_BASE_NULL
Data representation is dense; Values not set default to null.
|
SPARSE_BASE_ZERO
Data representation is sparse; values not set default to zero.
|
Modifier and Type | Method and Description |
---|---|
DataRepresentation.Base |
base()
Returns the base of this representation.
|
boolean |
isSparse()
Returns whether this representation is sparse.
|
static DataRepresentation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataRepresentation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataRepresentation DENSE_BASE_NULL
public static final DataRepresentation SPARSE_BASE_ZERO
public static DataRepresentation[] values()
for (DataRepresentation c : DataRepresentation.values()) System.out.println(c);
public static DataRepresentation 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 nullpublic DataRepresentation.Base base()
public boolean isSparse()
Copyright © 2020 Actian Corporation. All rights reserved.