Home
last modified time | relevance | path

Searched refs:moreSpecificType (Results 1 – 2 of 2) sorted by relevance

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/type/
DTestTypeFactory.java622 assertSame(t2, tf.moreSpecificType(t1, t2)); in testMoreSpecificType()
623 assertSame(t2, tf.moreSpecificType(t2, t1)); in testMoreSpecificType()
627 assertSame(t1, tf.moreSpecificType(t1, t2)); in testMoreSpecificType()
628 assertSame(t1, tf.moreSpecificType(t2, t1)); in testMoreSpecificType()
633 assertSame(t1, tf.moreSpecificType(t1, t2)); in testMoreSpecificType()
634 assertSame(t2, tf.moreSpecificType(t2, t1)); in testMoreSpecificType()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DTypeFactory.java671 public JavaType moreSpecificType(JavaType type1, JavaType type2) in moreSpecificType() method in TypeFactory