Uses of Class
com.fasterxml.jackson.annotation.JsonTypeInfo.Value
-
-
Uses of JsonTypeInfo.Value in com.fasterxml.jackson.annotation
Fields in com.fasterxml.jackson.annotation declared as JsonTypeInfo.Value Modifier and Type Field Description protected static JsonTypeInfo.Value
JsonTypeInfo.Value. EMPTY
Methods in com.fasterxml.jackson.annotation that return JsonTypeInfo.Value Modifier and Type Method Description static JsonTypeInfo.Value
JsonTypeInfo.Value. construct(JsonTypeInfo.Id idType, JsonTypeInfo.As inclusionType, java.lang.String propertyName, java.lang.Class<?> defaultImpl, boolean idVisible, java.lang.Boolean requireTypeIdForSubtypes)
static JsonTypeInfo.Value
JsonTypeInfo.Value. from(JsonTypeInfo src)
JsonTypeInfo.Value
JsonTypeInfo.Value. withDefaultImpl(java.lang.Class<?> impl)
JsonTypeInfo.Value
JsonTypeInfo.Value. withIdType(JsonTypeInfo.Id idType)
JsonTypeInfo.Value
JsonTypeInfo.Value. withIdVisible(boolean visible)
JsonTypeInfo.Value
JsonTypeInfo.Value. withInclusionType(JsonTypeInfo.As inclusionType)
JsonTypeInfo.Value
JsonTypeInfo.Value. withPropertyName(java.lang.String propName)
JsonTypeInfo.Value
JsonTypeInfo.Value. withRequireTypeIdForSubtypes(java.lang.Boolean requireTypeIdForSubtypes)
Methods in com.fasterxml.jackson.annotation with parameters of type JsonTypeInfo.Value Modifier and Type Method Description private static boolean
JsonTypeInfo.Value. _equals(JsonTypeInfo.Value a, JsonTypeInfo.Value b)
static boolean
JsonTypeInfo.Value. isEnabled(JsonTypeInfo.Value v)
Static helper method for simple(r) checking of whether there's a Value instance that indicates that polymorphic handling is (to be) enabled.
-