Examples of ConstantInteger


Examples of org.apache.bcel.classfile.ConstantInteger

     * @return index on success, -1 otherwise
     */
    public int lookupInteger( int n ) {
        for (int i = 1; i < index; i++) {
            if (constants[i] instanceof ConstantInteger) {
                ConstantInteger c = (ConstantInteger) constants[i];
                if (c.getBytes() == n) {
                    return i;
                }
            }
        }
        return -1;
View Full Code Here

Examples of org.apache.bcel.classfile.ConstantInteger

        if ((ret = lookupInteger(n)) != -1) {
            return ret; // Already in CP
        }
        adjustSize();
        ret = index;
        constants[index++] = new ConstantInteger(n);
        return ret;
    }
View Full Code Here

Examples of org.apache.bcel.classfile.ConstantInteger

                    ConstantFloat c = (ConstantFloat) constant;
                    result.append("float\t");
                    result.append(constPool.constantToString(c));
                    result.append(';');
                } else if (constant instanceof ConstantInteger) {
                    ConstantInteger c = (ConstantInteger) constant;
                    result.append("int\t");
                    result.append(constPool.constantToString(c));
                    result.append(';');
                } else if (constant instanceof ConstantLong) {
                    ConstantLong c = (ConstantLong) constant;
                    result.append("long\t");
                    result.append(constPool.constantToString(c));
                    result.append(';');
                } else if (constant instanceof ConstantClass) {
                    ConstantClass c = (ConstantClass) constant;
                    result.append("class\t#");
                    result.append(c.getNameIndex());
                    result.append(";\t//  ");
                    result.append(constPool.constantToString(c));
                } else if (constant instanceof ConstantString) {
                    ConstantString c = (ConstantString) constant;
                    result.append("String\t#");
                    result.append(c.getStringIndex());
                    result.append(";\t//  ");
                    result.append(constPool.constantToString(c));
                }

                result.append(n);
View Full Code Here

Examples of org.apache.bcel.classfile.ConstantInteger

                    ConstantFloat c = (ConstantFloat) constant;
                    result.append("float\t");
                    result.append(constPool.constantToString(c));
                    result.append(';');
                } else if (constant instanceof ConstantInteger) {
                    ConstantInteger c = (ConstantInteger) constant;
                    result.append("int\t");
                    result.append(constPool.constantToString(c));
                    result.append(';');
                } else if (constant instanceof ConstantLong) {
                    ConstantLong c = (ConstantLong) constant;
                    result.append("long\t");
                    result.append(constPool.constantToString(c));
                    result.append(';');
                } else if (constant instanceof ConstantClass) {
                    ConstantClass c = (ConstantClass) constant;
                    result.append("class\t#");
                    result.append(c.getNameIndex());
                    result.append(";\t//  ");
                    result.append(constPool.constantToString(c));
                } else if (constant instanceof ConstantString) {
                    ConstantString c = (ConstantString) constant;
                    result.append("String\t#");
                    result.append(c.getStringIndex());
                    result.append(";\t//  ");
                    result.append(constPool.constantToString(c));
                }

                result.append(n);
View Full Code Here

Examples of org.apache.bcel.classfile.ConstantInteger

     * @return index on success, -1 otherwise
     */
    public int lookupInteger( int n ) {
        for (int i = 1; i < index; i++) {
            if (constants[i] instanceof ConstantInteger) {
                ConstantInteger c = (ConstantInteger) constants[i];
                if (c.getBytes() == n) {
                    return i;
                }
            }
        }
        return -1;
View Full Code Here

Examples of org.apache.bcel.classfile.ConstantInteger

        if ((ret = lookupInteger(n)) != -1) {
            return ret; // Already in CP
        }
        adjustSize();
        ret = index;
        constants[index++] = new ConstantInteger(n);
        return ret;
    }
View Full Code Here

Examples of org.apache.bcel.classfile.ConstantInteger

  public int getValueInt()
  {
    if (type != PRIMITIVE_INT)
      throw new RuntimeException(
          "Dont call getValueString() on a non STRING ElementValue");
    ConstantInteger c = (ConstantInteger) cpGen.getConstant(idx);
    return c.getBytes();
  }
View Full Code Here

Examples of org.apache.bcel.classfile.ConstantInteger

    public String stringifyValue()
  {
    switch (type)
    {
    case PRIMITIVE_INT:
      ConstantInteger c = (ConstantInteger) cpGen.getConstant(idx);
      return Integer.toString(c.getBytes());
    case PRIMITIVE_LONG:
      ConstantLong j = (ConstantLong) cpGen.getConstant(idx);
      return Long.toString(j.getBytes());
    case PRIMITIVE_DOUBLE:
      ConstantDouble d = (ConstantDouble) cpGen.getConstant(idx);
      return Double.toString(d.getBytes());
    case PRIMITIVE_FLOAT:
      ConstantFloat f = (ConstantFloat) cpGen.getConstant(idx);
      return Float.toString(f.getBytes());
    case PRIMITIVE_SHORT:
      ConstantInteger s = (ConstantInteger) cpGen.getConstant(idx);
      return Integer.toString(s.getBytes());
    case PRIMITIVE_BYTE:
      ConstantInteger b = (ConstantInteger) cpGen.getConstant(idx);
      return Integer.toString(b.getBytes());
    case PRIMITIVE_CHAR:
      ConstantInteger ch = (ConstantInteger) cpGen.getConstant(idx);
      return Integer.toString(ch.getBytes());
    case PRIMITIVE_BOOLEAN:
      ConstantInteger bo = (ConstantInteger) cpGen.getConstant(idx);
      if (bo.getBytes() == 0)
        return "false";
      else
        return "true";
    case STRING:
      ConstantUtf8 cu8 = (ConstantUtf8) cpGen.getConstant(idx);
View Full Code Here

Examples of org.aspectj.apache.bcel.classfile.ConstantInteger

  public byte getValueByte() {
    if (type != PRIMITIVE_BYTE) {
      throw new RuntimeException("Dont call getValueByte() on a non BYTE ElementValue");
    }
    ConstantInteger c = (ConstantInteger) cpool.getConstant(idx, Constants.CONSTANT_Integer);
    return (byte) c.getIntValue();
  }
View Full Code Here

Examples of org.aspectj.apache.bcel.classfile.ConstantInteger

  public char getValueChar() {
    if (type != PRIMITIVE_CHAR) {
      throw new RuntimeException("Dont call getValueChar() on a non CHAR ElementValue");
    }
    ConstantInteger c = (ConstantInteger) cpool.getConstant(idx, Constants.CONSTANT_Integer);
    return (char) c.getIntValue();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.