Home | History | Annotate | Download | only in types

Lines Matching defs:bound

25     private ResolvedType bound;
27 private ResolvedLambdaConstraintType(ResolvedType bound) {
28 this.bound = bound;
33 return "? super " + bound.describe();
37 return bound;
50 public static ResolvedLambdaConstraintType bound(ResolvedType bound){
51 return new ResolvedLambdaConstraintType(bound);
56 return bound.isAssignableBy(other);
62 "bound=" + bound +