Java Code Examples for org.apache.bcel.Const#F2D

The following examples show how to use org.apache.bcel.Const#F2D . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ConversionInstruction.java    From commons-bcel with Apache License 2.0 5 votes vote down vote up
/** @return type associated with the instruction
 */
@Override
public Type getType( final ConstantPoolGen cp ) {
    final short _opcode = super.getOpcode();
    switch (_opcode) {
        case Const.D2I:
        case Const.F2I:
        case Const.L2I:
            return Type.INT;
        case Const.D2F:
        case Const.I2F:
        case Const.L2F:
            return Type.FLOAT;
        case Const.D2L:
        case Const.F2L:
        case Const.I2L:
            return Type.LONG;
        case Const.F2D:
        case Const.I2D:
        case Const.L2D:
            return Type.DOUBLE;
        case Const.I2B:
            return Type.BYTE;
        case Const.I2C:
            return Type.CHAR;
        case Const.I2S:
            return Type.SHORT;
        default: // Never reached
            throw new ClassGenException("Unknown type " + _opcode);
    }
}