Package | Description |
---|---|
edu.berkeley.cs186.database.databox |
Modifier and Type | Method and Description |
---|---|
int |
DataBox.compareTo(Object obj) |
boolean |
DataBox.getBool() |
byte[] |
DataBox.getBytes()
Returns a byte array with the data contained by this DataBox.
|
float |
DataBox.getFloat() |
int |
DataBox.getInt() |
int |
DataBox.getSize()
Returns the fixed size of this DataBox.
|
String |
DataBox.getString() |
void |
DataBox.setBool(boolean b) |
void |
DataBox.setFloat(float f) |
void |
DataBox.setInt(int i) |
void |
DataBox.setString(String s,
int len) |
String |
DataBox.toString() |
DataBox.Types |
DataBox.type()
Returns the type of the DataBox.
|
Constructor and Description |
---|
DataBox() |
DataBox(boolean b) |
DataBox(byte[] buf) |
DataBox(float f) |
DataBox(int i) |
DataBox(String s,
int len) |
Copyright © 2017. All rights reserved.