org.apache.tomcat.util.bcel.classfile
Class ConstantValue
java.lang.Object
org.apache.tomcat.util.bcel.classfile.Attribute
org.apache.tomcat.util.bcel.classfile.ConstantValue
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Cloneable
public final class ConstantValue
- extends Attribute
This class is derived from Attribute and represents a constant
value, i.e., a default value for initializing a class field.
This class is instantiated by the Attribute.readAttribute() method.
- Version:
- $Id: ConstantValue.java 1057670 2011-01-11 14:52:05Z markt $
- Author:
- M. Dahm
- See Also:
Attribute
,
Serialized Form
Method Summary |
Attribute |
copy(ConstantPool _constant_pool)
|
void |
dump(java.io.DataOutputStream file)
Dump constant value attribute to file stream on binary format. |
java.lang.String |
toString()
|
Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ConstantValue
public ConstantValue(int name_index,
int length,
int constantvalue_index,
ConstantPool constant_pool)
- Parameters:
name_index
- Name index in constant poollength
- Content length in bytesconstantvalue_index
- Index in constant poolconstant_pool
- Array of constants
dump
public final void dump(java.io.DataOutputStream file)
throws java.io.IOException
- Dump constant value attribute to file stream on binary format.
- Overrides:
dump
in class Attribute
- Parameters:
file
- Output file stream
- Throws:
java.io.IOException
toString
public final java.lang.String toString()
- Overrides:
toString
in class Attribute
- Returns:
- String representation of constant value.
copy
public Attribute copy(ConstantPool _constant_pool)
- Specified by:
copy
in class Attribute
- Returns:
- deep copy of this attribute
Copyright © 2000-2011 Apache Software Foundation. All Rights Reserved.