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 booleangetBoolean()bytegetByte()byte[]getBytes()chargetChar()java.util.DategetDate()doublegetDouble()floatgetFloat()intgetInteger()longgetLong()shortgetShort()java.lang.StringgetString()java.nio.ByteBufferread()abstract intread(byte[] bytes, int offs, int len)voidset(boolean b)voidset(byte b)voidset(byte[] data)voidset(char c)voidset(double d)voidset(float f)voidset(int i)voidset(long l)voidset(short s)voidset(java.lang.String s)voidset(java.util.Date date)abstract intsize()intwrite(byte[] bytes)abstract intwrite(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:
getBooleanin interfaceProperty
-
getInteger
public int getInteger()
- Specified by:
getIntegerin interfaceProperty
-
-