net.opentsdb.core
Class Const

java.lang.Object
  extended by net.opentsdb.core.Const

public final class Const
extends Object

Constants used in various places.


Field Summary
static byte[] HEX
          Array containing the hexadecimal characters (0 to 9, A to F).
static short MAX_NUM_TAGS
          Maximum number of tags allowed per data point.
static short MAX_TIMESPAN
          Max time delta (in seconds) we can store in a column qualifier.
static short TIMESTAMP_BYTES
          Number of bytes on which a timestamp is encoded.
 
Constructor Summary
Const()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

TIMESTAMP_BYTES

public static final short TIMESTAMP_BYTES
Number of bytes on which a timestamp is encoded.

See Also:
Constant Field Values

MAX_NUM_TAGS

public static final short MAX_NUM_TAGS
Maximum number of tags allowed per data point.

See Also:
Constant Field Values

MAX_TIMESPAN

public static final short MAX_TIMESPAN
Max time delta (in seconds) we can store in a column qualifier.

See Also:
Constant Field Values

HEX

public static final byte[] HEX
Array containing the hexadecimal characters (0 to 9, A to F). This array is read-only, changing its contents leads to an undefined behavior.

Constructor Detail

Const

public Const()