Uses of Class
org.openapitools.jackson.nullable.JsonNullable
-
-
Uses of JsonNullable in org.openapitools.jackson.nullable
Methods in org.openapitools.jackson.nullable that return JsonNullable Modifier and Type Method Description JsonNullable<java.lang.Object>JsonNullableDeserializer. deserialize(com.fasterxml.jackson.core.JsonParser p, com.fasterxml.jackson.databind.DeserializationContext ctxt)JsonNullable<T>JsonNullable. filter(java.util.function.Predicate<T> predicate)If a value is present, and the value matches the given predicate, returns a JsonNullable describing the value, otherwise returns an undefined JsonNullable.<U> JsonNullable<U>JsonNullable. flatMap(java.util.function.Function<? super T,? extends JsonNullable<? extends U>> mapper)If a value is present, returns the result of applying the given JsonNullable-bearing mapping function to the value, otherwise returns an undefined JsonNullable.JsonNullable<java.lang.Object>JsonNullableDeserializer. getNullValue(com.fasterxml.jackson.databind.DeserializationContext ctxt)<U> JsonNullable<U>JsonNullable. map(java.util.function.Function<T,U> mapper)If a value is present, returns a JsonNullable describing the result of applying the given mapping function to the value, otherwise returns an undefined JsonNullable.static <T> JsonNullable<T>JsonNullable. of(T value)Create aJsonNullablefrom the submitted value.JsonNullable<T>JsonNullable. or(java.util.function.Supplier<? extends JsonNullable<? extends T>> supplier)If a value is present, returns a JsonNullable describing the value, otherwise returns a JsonNullable produced by the supplying function.JsonNullable<java.lang.Object>JsonNullableDeserializer. referenceValue(java.lang.Object contents)static <T> JsonNullable<T>JsonNullable. undefined()Create aJsonNullablerepresenting an undefined value (not present).JsonNullable<java.lang.Object>JsonNullableDeserializer. updateReference(JsonNullable<java.lang.Object> reference, java.lang.Object contents)Methods in org.openapitools.jackson.nullable that return types with arguments of type JsonNullable Modifier and Type Method Description com.fasterxml.jackson.databind.ser.std.ReferenceTypeSerializer<JsonNullable<?>>JsonNullableSerializer. withContentInclusion(java.lang.Object suppressableValue, boolean suppressNulls)protected com.fasterxml.jackson.databind.ser.std.ReferenceTypeSerializer<JsonNullable<?>>JsonNullableSerializer. withResolved(com.fasterxml.jackson.databind.BeanProperty prop, com.fasterxml.jackson.databind.jsontype.TypeSerializer vts, com.fasterxml.jackson.databind.JsonSerializer<?> valueSer, com.fasterxml.jackson.databind.util.NameTransformer unwrapper)Methods in org.openapitools.jackson.nullable with parameters of type JsonNullable Modifier and Type Method Description protected java.lang.ObjectJsonNullableSerializer. _getReferenced(JsonNullable<?> value)protected java.lang.ObjectJsonNullableSerializer. _getReferencedIfPresent(JsonNullable<?> value)protected booleanJsonNullableSerializer. _isValuePresent(JsonNullable<?> value)voidJsonNullableJakartaValueExtractor. extractValues(JsonNullable<?> originalValue, jakarta.validation.valueextraction.ValueExtractor.ValueReceiver receiver)voidJsonNullableValueExtractor. extractValues(JsonNullable<?> originalValue, javax.validation.valueextraction.ValueExtractor.ValueReceiver receiver)java.lang.ObjectJsonNullableDeserializer. getReferenced(JsonNullable<java.lang.Object> reference)JsonNullable<java.lang.Object>JsonNullableDeserializer. updateReference(JsonNullable<java.lang.Object> reference, java.lang.Object contents)Method parameters in org.openapitools.jackson.nullable with type arguments of type JsonNullable Modifier and Type Method Description <U> JsonNullable<U>JsonNullable. flatMap(java.util.function.Function<? super T,? extends JsonNullable<? extends U>> mapper)If a value is present, returns the result of applying the given JsonNullable-bearing mapping function to the value, otherwise returns an undefined JsonNullable.JsonNullable<T>JsonNullable. or(java.util.function.Supplier<? extends JsonNullable<? extends T>> supplier)If a value is present, returns a JsonNullable describing the value, otherwise returns a JsonNullable produced by the supplying function.
-