Package io.manebot.database.model
Class BinaryProperty
- java.lang.Object
-
- io.manebot.database.model.BinaryProperty
-
-
Constructor Summary
Constructors Constructor Description BinaryProperty()
-
Method Summary
Modifier and Type Method Description boolean
getBoolean()
byte
getByte()
byte[]
getBytes()
char
getChar()
java.util.Date
getDate()
double
getDouble()
float
getFloat()
int
getInteger()
long
getLong()
short
getShort()
java.lang.String
getString()
java.nio.ByteBuffer
read()
abstract int
read(byte[] bytes, int offs, int len)
void
set(boolean b)
void
set(byte b)
void
set(byte[] data)
void
set(char c)
void
set(double d)
void
set(float f)
void
set(int i)
void
set(long l)
void
set(short s)
void
set(java.lang.String s)
void
set(java.util.Date date)
abstract int
size()
int
write(byte[] bytes)
abstract int
write(byte[] bytes, int offs, int len)
-
-
-
Method Detail
-
size
public abstract int size()
-
write
public int write(byte[] bytes)
-
write
public abstract int write(byte[] bytes, int offs, int len)
-
read
public abstract int read(byte[] bytes, int offs, int len)
-
read
public java.nio.ByteBuffer read()
-
getBoolean
public boolean getBoolean()
- Specified by:
getBoolean
in interfaceProperty
-
getInteger
public int getInteger()
- Specified by:
getInteger
in interfaceProperty
-
-