Copyright © 2011 Citra Technologies. All Rights Reserved.

com.citra.pivot.olap.metadata
Interface OlapType

All Known Implementing Classes:
OlapType.DefType

public interface OlapType

OlapType defines the type of a value in a datasource.


Nested Class Summary
static class OlapType.DefType
           
 
Field Summary
static OlapType BOOLEAN
          type representing a boolean
static OlapType CURRENCY
          type representing a currency
static OlapType DOUBLE
          type representing a double
static OlapType INTEGER
          type representing an integer
static OlapType LARGE_INTEGER
          type representing a large integer
static OlapType STRING
          type representing a string
static OlapType UNSIGNED_INTEGER
          type representing an unsigned integer
static OlapType UNSIGNED_SHORT
          type representing an unsigned short
static OlapType VARIANT
          type representing a variant
 
Method Summary
 String getName()
          Returns the name of the type.
 

Field Detail

INTEGER

static final OlapType INTEGER
type representing an integer


DOUBLE

static final OlapType DOUBLE
type representing a double


CURRENCY

static final OlapType CURRENCY
type representing a currency


BOOLEAN

static final OlapType BOOLEAN
type representing a boolean


VARIANT

static final OlapType VARIANT
type representing a variant


UNSIGNED_SHORT

static final OlapType UNSIGNED_SHORT
type representing an unsigned short


UNSIGNED_INTEGER

static final OlapType UNSIGNED_INTEGER
type representing an unsigned integer


LARGE_INTEGER

static final OlapType LARGE_INTEGER
type representing a large integer


STRING

static final OlapType STRING
type representing a string

Method Detail

getName

String getName()
Returns the name of the type.

Returns:
the type's name

Copyright © 2011 Citra Technologies. All Rights Reserved.