Known Indirect Subclasses
  
 | 
Class Overview
Provides access to a primitive byte value in the target VM.
 
Summary
| Public Methods | 
	 
    
        | 
            abstract
            
            
            
            
            boolean
         | 
        
        equals(Object obj)
        
         Compares the specified Object with this ByteValue for equality. 
  
   | 
	 
    
        | 
            abstract
            
            
            
            
            int
         | 
        
        hashCode()
        
         Returns the hash code value for this BooleanValue. 
  
   | 
	 
    
        | 
            abstract
            
            
            
            
            byte
         | 
        
        value()
        
         Returns this ByteValue as a byte. 
  
   | 
| 
  [Expand]
   Inherited Methods  | 
   
From interface
  com.sun.jdi.Mirror
 | 
   
From interface
  com.sun.jdi.PrimitiveValue
  
   
  
    
    
	 
    
        | 
            abstract
            
            
            
            
            boolean
         | 
        
        booleanValue()
        
         Converts this value to a BooleanValue and returns the result
 as a boolean. 
  
   |  
	 
    
        | 
            abstract
            
            
            
            
            byte
         | 
        
        byteValue()
        
         Converts this value to a ByteValue and returns the result
 as a byte. 
  
   |  
	 
    
        | 
            abstract
            
            
            
            
            char
         | 
        
        charValue()
        
         Converts this value to a CharValue and returns the result
 as a char. 
  
   |  
	 
    
        | 
            abstract
            
            
            
            
            double
         | 
        
        doubleValue()
        
         Converts this value to a DoubleValue and returns the result
 as a double. 
  
   |  
	 
    
        | 
            abstract
            
            
            
            
            float
         | 
        
        floatValue()
        
         Converts this value to a FloatValue and returns the result
 as a float. 
  
   |  
	 
    
        | 
            abstract
            
            
            
            
            int
         | 
        
        intValue()
        
         Converts this value to an IntegerValue and returns the result
 as an int. 
  
   |  
	 
    
        | 
            abstract
            
            
            
            
            long
         | 
        
        longValue()
        
         Converts this value to a LongValue and returns the result
 as a long. 
  
   |  
	 
    
        | 
            abstract
            
            
            
            
            short
         | 
        
        shortValue()
        
         Converts this value to a ShortValue and returns the result
 as a short. 
  
   |  
 
   
 
 | 
   
From interface
  com.sun.jdi.Value
  
   
  
    
    
	 
    
        | 
            abstract
            
            
            
            
            Type
         | 
        
        type()
        
         Returns the run-time type of this value. 
  
   |  
 
   
 
 | 
   
From interface
  java.lang.Comparable
  
   
  
    
    
	 
    
        | 
            abstract
            
            
            
            
            int
         | 
        
        compareTo(T o)
        
         Compares this object with the specified object for order. 
  
   |  
 
   
 
 | 
 
Public Methods
 
    
      
        public 
         
         
        abstract 
         
        boolean
      
      equals
      (Object obj)
    
      
    
      
  Compares the specified Object with this ByteValue for equality.
 
  
      Parameters
      
        
          | obj
           | the reference object with which to compare. | 
        
      
   
  
      Returns
      - true if the Object is a ByteValue and if applying "=="
 to the two mirrored primitives would evaluate to true; false
 otherwise.
 
   
     
 
 
    
      
        public 
         
         
        abstract 
         
        int
      
      hashCode
      ()
    
      
    
      
  Returns the hash code value for this BooleanValue.
 
  
     
 
 
    
      
        public 
         
         
        abstract 
         
        byte
      
      value
      ()
    
      
    
      
  Returns this ByteValue as a byte.
 
  
      Returns
      - the 
byte mirrored by this object.