Interface LogicalConstant<L extends LogicalConstant<L>>

All Superinterfaces:
Acceptor<ConstantVisitor>, Constant, EquivTo, Immediate, Value
All Known Subinterfaces:
ShiftableConstant<A>
All Known Implementing Classes:
BooleanConstant, IntConstant, LongConstant

public interface LogicalConstant<L extends LogicalConstant<L>> extends Constant
  • Method Summary

    Modifier and Type
    Method
    Description
    @NonNull L
    and(@NonNull L c)
     
    @NonNull L
    or(@NonNull L c)
     
    @NonNull L
    xor(@NonNull L c)
     

    Methods inherited from interface sootup.core.jimple.visitor.Acceptor

    accept

    Methods inherited from interface sootup.core.jimple.common.constant.Constant

    equivHashCode, equivTo, getUses, toString

    Methods inherited from interface sootup.core.jimple.basic.EquivTo

    equivTo

    Methods inherited from interface sootup.core.jimple.basic.Value

    accept, getType
  • Method Details

    • and

      @NonNull L and(@NonNull L c)
    • or

      @NonNull L or(@NonNull L c)
    • xor

      @NonNull L xor(@NonNull L c)