Package org.codehaus.janino.util
Class ClassFile.StackMapTableAttribute.UninitializedVariableInfo
- java.lang.Object
-
- org.codehaus.janino.util.ClassFile.StackMapTableAttribute.UninitializedVariableInfo
-
- All Implemented Interfaces:
ClassFile.StackMapTableAttribute.VerificationTypeInfo
- Enclosing class:
- ClassFile.StackMapTableAttribute
public static class ClassFile.StackMapTableAttribute.UninitializedVariableInfo extends Object implements ClassFile.StackMapTableAttribute.VerificationTypeInfo
Representation of theuninitialized_variable_info
structure; see JVMS8 4.7.4.
-
-
Field Summary
Fields Modifier and Type Field Description short
offset
The code offset where the variable is declared.
-
Constructor Summary
Constructors Constructor Description UninitializedVariableInfo(short offset)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
category()
boolean
equals(Object obj)
int
hashCode()
void
store(DataOutputStream dos)
Writes this object to anOutputStream
, in "class file" format.String
toString()
-
-
-
Method Detail
-
category
public int category()
- Specified by:
category
in interfaceClassFile.StackMapTableAttribute.VerificationTypeInfo
- Returns:
- The category of the type (1 or 2) (JVMS11 2.11.1)
-
store
public void store(DataOutputStream dos) throws IOException
Description copied from interface:ClassFile.StackMapTableAttribute.VerificationTypeInfo
Writes this object to anOutputStream
, in "class file" format.- Specified by:
store
in interfaceClassFile.StackMapTableAttribute.VerificationTypeInfo
- Throws:
IOException
-
-