Home | History | Annotate | Download | only in retriever

Lines Matching refs:kind

12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
24 * An immutable value type representing a statement relation with "kind" and "detail".
43 private Relation(String kind, String detail) {
44 mKind = kind;
49 * Returns the relation's kind.
65 * Creates a new Relation object for the specified {@code kind} and {@code detail}.
67 * @throws AssociationServiceException if {@code kind} or {@code detail} is not well formatted.
69 public static Relation create(@NonNull String kind, @NonNull String detail)
71 if (!KIND_PATTERN.matcher(kind).matches() || !DETAIL_PATTERN.matcher(detail).matches()) {
74 return new Relation(kind, detail);
91 * Returns true if {@code relation} has the same kind and detail.