25using IKVM.ByteCode.Decoding;
30 sealed partial class ClassFile
36 sealed class ConstantPoolItemInteger : ConstantPoolItem
46 internal ConstantPoolItemInteger(RuntimeContext context, IntegerConstantData data) :
54 public override ConstantType GetConstantType() => ConstantType.Integer;
57 public override object GetRuntimeValue() => _value;
62 public int Value => _value;