- java.lang.Object
-
- java.lang.Number
-
- org.redkale.util.Uint128
-
- 所有已实现的接口:
Serializable
,Comparable<Uint128>
public final class Uint128 extends Number implements Comparable<Uint128>
16bytes数据结构 注意: 为了提高性能, Uint128中的bytes是直接返回, 不得对bytes的内容进行修改。详情见: https://redkale.org
- 作者:
- zhangjx
- 另请参阅:
- 序列化表格
-
-
方法概要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 说明 int
compareTo(Uint128 o)
static Uint128
create(byte[] bs)
double
doubleValue()
boolean
equals(byte[] bytes)
boolean
equals(Object obj)
float
floatValue()
byte[]
getBytes()
int
hashCode()
int
intValue()
long
longValue()
static Uint128
read(ByteBuffer buffer)
String
toString()
static ByteBuffer
write(ByteBuffer buffer, Uint128 dlong)
-
从类继承的方法 java.lang.Number
byteValue, shortValue
-
-
-
-
字段详细资料
-
ZERO
public static final Uint128 ZERO
-
-
方法详细资料
-
getBytes
public byte[] getBytes()
-
create
public static Uint128 create(byte[] bs)
-
read
public static Uint128 read(ByteBuffer buffer)
-
write
public static ByteBuffer write(ByteBuffer buffer, Uint128 dlong)
-
equals
public boolean equals(byte[] bytes)
-
floatValue
public float floatValue()
- 指定者:
floatValue
在类中Number
-
doubleValue
public double doubleValue()
- 指定者:
doubleValue
在类中Number
-
compareTo
public int compareTo(Uint128 o)
- 指定者:
compareTo
在接口中Comparable<Uint128>
-
-