Home | History | Annotate | Download | only in relative

Lines Matching refs:ConstraintType

54 enum ConstraintType {
83 private ConstraintType(String name, SegmentType sourceSegmentTypeX,
134 private static Map<String, ConstraintType> sNameToType;
137 * Returns the {@link ConstraintType} corresponding to the given attribute name, or
141 * @return the corresponding {@link ConstraintType}
144 public static ConstraintType fromAttribute(@NonNull String attribute) {
146 ConstraintType[] types = ConstraintType.values();
147 Map<String, ConstraintType> map = new HashMap<String, ConstraintType>(types.length);
148 for (ConstraintType type : types) {
168 * Returns a {@link ConstraintType} for a potential match of edges.
173 * @return a {@link ConstraintType}, or null
176 public static ConstraintType forMatch(boolean withParent, SegmentType from, SegmentType to) {