Uses of Interface
com.strobel.functions.Consumer
-
Packages that use Consumer Package Description com.strobel.assembler.flowanalysis com.strobel.core com.strobel.decompiler.ast com.strobel.expressions -
-
Uses of Consumer in com.strobel.assembler.flowanalysis
Methods in com.strobel.assembler.flowanalysis with parameters of type Consumer Modifier and Type Method Description void
ControlFlowNode. traversePostOrder(Function<ControlFlowNode,java.lang.Iterable<ControlFlowNode>> children, Consumer<ControlFlowNode> visitAction)
void
ControlFlowNode. traversePreOrder(Function<ControlFlowNode,java.lang.Iterable<ControlFlowNode>> children, Consumer<ControlFlowNode> visitAction)
-
Uses of Consumer in com.strobel.core
Classes in com.strobel.core that implement Consumer Modifier and Type Class Description class
StrongBox<T>
-
Uses of Consumer in com.strobel.decompiler.ast
Methods in com.strobel.decompiler.ast with parameters of type Consumer Modifier and Type Method Description static boolean
PatternMatching. matchBooleanConstant(Node node, Consumer<? super java.lang.Boolean> value)
static boolean
PatternMatching. matchCharacterConstant(Node node, Consumer<? super java.lang.Character> value)
static <T> boolean
PatternMatching. matchGetOperand(Node node, AstCode code, Consumer<? super T> operand)
static boolean
PatternMatching. matchIntegralConstant(Node node, Consumer<? super java.lang.Long> constant)
static boolean
PatternMatching. matchLoad(Node node, Consumer<? super Variable> variable)
static boolean
PatternMatching. matchLock(java.util.List<Node> body, int position, Consumer<? super LockInfo> result)
static boolean
PatternMatching. matchNumericConstant(Node node, Consumer<? super java.lang.Number> constant)
-
Uses of Consumer in com.strobel.expressions
Fields in com.strobel.expressions declared as Consumer Modifier and Type Field Description private Consumer<? extends Expression>
DebugViewWriter. VISITOR_BLOCK
Methods in com.strobel.expressions that return Consumer Modifier and Type Method Description private <T extends Expression>
Consumer<T>DebugViewWriter. visitorBlock()
Methods in com.strobel.expressions with parameters of type Consumer Modifier and Type Method Description private <T extends Expression>
voidDebugViewWriter. visitExpressions(char open, char separator, ExpressionList<T> expressions, Consumer<T> visit)
-