Class TargetSelector.Result<TNode>

java.lang.Object
org.spongepowered.asm.mixin.injection.selectors.TargetSelector.Result<TNode>
Type Parameters:
TNode - Node type
Enclosing class:
TargetSelector

public static class TargetSelector.Result<TNode> extends Object
Query result struct
  • Field Details

    • exactMatch

      public final ElementNode<TNode> exactMatch
      Any exact match returned by the query
    • candidates

      public final List<ElementNode<TNode>> candidates
      All candidates returned by the query
  • Method Details

    • getSingleResult

      public TNode getSingleResult(boolean strict)
      Get only a single result from this handle. Preferentially returns an exact match if one was found, or returns the first result if only one result was found or if strict is false. If strict is true and more than one candidate was found, a IllegalStateException is thrown. If no results are found then the exception is also thrown.
      Parameters:
      strict - True to only return the first (non-exact) result if exactly one result was found. If more than one candidate was found, throws IllegalStateException