-
- All Superinterfaces:
-
Comparable<ByteValue>
,Mirror
,PrimitiveValue
,Value
public interface ByteValue extends PrimitiveValue, Comparable<ByteValue>
提供对目标虚拟机中原始数据byte
值的访问。- 从以下版本开始:
- 1.3
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 boolean
equals(Object obj)
将指定的对象与此ByteValue进行比较以获得相等性。int
hashCode()
返回此BooleanValue的哈希码值。byte
value()
将此ByteValue返回为byte
。-
Methods inherited from interface java.lang.Comparable
compareTo
-
Methods inherited from interface com.sun.jdi.Mirror
toString, virtualMachine
-
Methods inherited from interface com.sun.jdi.PrimitiveValue
booleanValue, byteValue, charValue, doubleValue, floatValue, intValue, longValue, shortValue
-
-
-
-
方法详细信息
-
value
byte value()
将此ByteValue返回为byte
。- 结果
-
这个对象镜像的
byte
。
-
equals
boolean equals(Object obj)
将指定的对象与此ByteValue进行比较以获得相等性。- 重写:
-
equals
在Object
- 参数
-
obj
- 与之比较的参考对象。 - 结果
- 如果Object是ByteValue,并且如果对两个镜像的原语应用“==”,则该值为true; 否则为假。
- 另请参见:
-
Object.hashCode()
,HashMap
-
hashCode
int hashCode()
返回此BooleanValue的哈希码值。- 重写:
-
hashCode
在Object
- 结果
- 整数哈希码
- 另请参见:
-
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
-
-