Class ConstraintFormula.ReductionResult
- java.lang.Object
-
- com.github.javaparser.symbolsolver.resolution.typeinference.ConstraintFormula.ReductionResult
-
- Enclosing class:
- ConstraintFormula
public static class ConstraintFormula.ReductionResult extends Object
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConstraintFormula.ReductionResultbounds(BoundSet bounds)static ConstraintFormula.ReductionResultempty()booleanequals(Object o)static ConstraintFormula.ReductionResultfalseResult()BoundSetgetBoundSet()ConstraintFormulagetConstraint(int index)List<ConstraintFormula>getConstraintFormulas()inthashCode()static ConstraintFormula.ReductionResultoneBound(Bound bound)static ConstraintFormula.ReductionResultoneConstraint(ConstraintFormula constraintFormula)StringtoString()static ConstraintFormula.ReductionResulttrueResult()ConstraintFormula.ReductionResultwithBound(Bound bound)ConstraintFormula.ReductionResultwithConstraint(ConstraintFormula constraintFormula)static ConstraintFormula.ReductionResultwithConstraints(ConstraintFormula... constraints)static ConstraintFormula.ReductionResultwithConstraints(List<ConstraintFormula> constraints)
-
-
-
Method Detail
-
getBoundSet
public BoundSet getBoundSet()
-
getConstraintFormulas
public List<ConstraintFormula> getConstraintFormulas()
-
empty
public static ConstraintFormula.ReductionResult empty()
-
withConstraint
public ConstraintFormula.ReductionResult withConstraint(ConstraintFormula constraintFormula)
-
withBound
public ConstraintFormula.ReductionResult withBound(Bound bound)
-
trueResult
public static ConstraintFormula.ReductionResult trueResult()
-
falseResult
public static ConstraintFormula.ReductionResult falseResult()
-
getConstraint
public ConstraintFormula getConstraint(int index)
-
oneConstraint
public static ConstraintFormula.ReductionResult oneConstraint(ConstraintFormula constraintFormula)
-
withConstraints
public static ConstraintFormula.ReductionResult withConstraints(ConstraintFormula... constraints)
-
oneBound
public static ConstraintFormula.ReductionResult oneBound(Bound bound)
-
withConstraints
public static ConstraintFormula.ReductionResult withConstraints(List<ConstraintFormula> constraints)
-
bounds
public static ConstraintFormula.ReductionResult bounds(BoundSet bounds)
-
-