Package com.strobel.decompiler.patterns
Class Match
- java.lang.Object
-
- com.strobel.decompiler.patterns.Match
-
public final class Match extends java.lang.Object
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(java.lang.String groupName, INode node)
static Match
createNew()
static Match
failure()
<T extends INode>
java.lang.Iterable<T>get(java.lang.String groupName)
(package private) int
getCheckPoint()
boolean
has(java.lang.String groupName)
(package private) void
restoreCheckPoint(int checkpoint)
boolean
success()
-
-
-
Method Detail
-
success
public final boolean success()
-
add
public final void add(java.lang.String groupName, INode node)
-
has
public final boolean has(java.lang.String groupName)
-
get
public final <T extends INode> java.lang.Iterable<T> get(java.lang.String groupName)
-
getCheckPoint
final int getCheckPoint()
-
restoreCheckPoint
final void restoreCheckPoint(int checkpoint)
-
createNew
public static Match createNew()
-
failure
public static Match failure()
-
-