Uses of Class
com.fasterxml.jackson.annotation.JsonFormat.Shape
-
Packages that use JsonFormat.Shape Package Description com.fasterxml.jackson.annotation Public core annotations, most of which are used to configure how Data Mapping/Binding works.com.fasterxml.jackson.databind.deser Contains implementation classes of deserialization part of data binding.com.fasterxml.jackson.databind.ser.std com.fasterxml.jackson.datatype.jsr310.deser com.fasterxml.jackson.datatype.jsr310.ser -
-
Uses of JsonFormat.Shape in com.fasterxml.jackson.annotation
Methods in com.fasterxml.jackson.annotation that return JsonFormat.Shape Modifier and Type Method Description JsonFormat.ShapeJsonFormat.Value. getShape()JsonFormat.Shapeshape()Structure to use for serialization: definition of mapping depends on datatype, but usually has straight-forward counterpart in data format (JSON).static JsonFormat.ShapeJsonFormat.Shape. valueOf(String name)Returns the enum constant of this type with the specified name.static JsonFormat.Shape[]JsonFormat.Shape. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.fasterxml.jackson.annotation with parameters of type JsonFormat.Shape Modifier and Type Method Description static JsonFormat.ValueJsonFormat.Value. forShape(JsonFormat.Shape sh)JsonFormat.ValueJsonFormat.Value. withShape(JsonFormat.Shape s)Constructors in com.fasterxml.jackson.annotation with parameters of type JsonFormat.Shape Constructor Description Value(String p, JsonFormat.Shape sh, String localeStr, String tzStr, JsonFormat.Features f)Deprecated.Value(String p, JsonFormat.Shape sh, String localeStr, String tzStr, JsonFormat.Features f, Boolean lenient)Value(String p, JsonFormat.Shape sh, Locale l, String tzStr, TimeZone tz, JsonFormat.Features f)Deprecated.Value(String p, JsonFormat.Shape sh, Locale l, String tzStr, TimeZone tz, JsonFormat.Features f, Boolean lenient)Value(String p, JsonFormat.Shape sh, Locale l, TimeZone tz, JsonFormat.Features f)Deprecated.Value(String p, JsonFormat.Shape sh, Locale l, TimeZone tz, JsonFormat.Features f, Boolean lenient) -
Uses of JsonFormat.Shape in com.fasterxml.jackson.databind.deser
Fields in com.fasterxml.jackson.databind.deser declared as JsonFormat.Shape Modifier and Type Field Description protected JsonFormat.ShapeBeanDeserializerBase. _serializationShapeRequested shape from bean class annotations. -
Uses of JsonFormat.Shape in com.fasterxml.jackson.databind.ser.std
Fields in com.fasterxml.jackson.databind.ser.std declared as JsonFormat.Shape Modifier and Type Field Description protected JsonFormat.ShapeBeanSerializerBase. _serializationShapeRequested shape from bean class annotations. -
Uses of JsonFormat.Shape in com.fasterxml.jackson.datatype.jsr310.deser
Fields in com.fasterxml.jackson.datatype.jsr310.deser declared as JsonFormat.Shape Modifier and Type Field Description protected JsonFormat.ShapeJSR310DateTimeDeserializerBase. _shapeSetting that indicates the specified for this deserializer as aJsonFormat.Shapeannotation on property or class, or due to per-type "config override", or from global settings: If Shape is NUMBER_INT, the input value is considered to be epoch days.Methods in com.fasterxml.jackson.datatype.jsr310.deser with parameters of type JsonFormat.Shape Modifier and Type Method Description protected InstantDeserializer<T>InstantDeserializer. withShape(JsonFormat.Shape shape)protected abstract JSR310DateTimeDeserializerBase<T>JSR310DateTimeDeserializerBase. withShape(JsonFormat.Shape shape)protected LocalDateDeserializerLocalDateDeserializer. withShape(JsonFormat.Shape shape)protected LocalDateTimeDeserializerLocalDateTimeDeserializer. withShape(JsonFormat.Shape shape)protected LocalTimeDeserializerLocalTimeDeserializer. withShape(JsonFormat.Shape shape)protected MonthDayDeserializerMonthDayDeserializer. withShape(JsonFormat.Shape shape)protected OffsetTimeDeserializerOffsetTimeDeserializer. withShape(JsonFormat.Shape shape)protected YearDeserializerYearDeserializer. withShape(JsonFormat.Shape shape)protected YearMonthDeserializerYearMonthDeserializer. withShape(JsonFormat.Shape shape)Constructors in com.fasterxml.jackson.datatype.jsr310.deser with parameters of type JsonFormat.Shape Constructor Description JSR310DateTimeDeserializerBase(JSR310DateTimeDeserializerBase<T> base, JsonFormat.Shape shape)LocalDateDeserializer(LocalDateDeserializer base, JsonFormat.Shape shape)Since 2.11 -
Uses of JsonFormat.Shape in com.fasterxml.jackson.datatype.jsr310.ser
Fields in com.fasterxml.jackson.datatype.jsr310.ser declared as JsonFormat.Shape Modifier and Type Field Description protected JsonFormat.ShapeJSR310FormattedSerializerBase. _shapeprotected JsonFormat.ShapeJSR310FormattedSerializerBase. _shapeprotected JsonFormat.ShapeJSR310FormattedSerializerBase. _shapeprotected JsonFormat.ShapeJSR310FormattedSerializerBase. _shapeprotected JsonFormat.ShapeJSR310FormattedSerializerBase. _shapeprotected JsonFormat.ShapeJSR310FormattedSerializerBase. _shapeprotected JsonFormat.ShapeJSR310FormattedSerializerBase. _shapeprotected JsonFormat.ShapeJSR310FormattedSerializerBase. _shapeprotected JsonFormat.ShapeJSR310FormattedSerializerBase. _shapeprotected JsonFormat.ShapeJSR310FormattedSerializerBase. _shapeprotected JsonFormat.ShapeJSR310FormattedSerializerBase. _shapeprotected JsonFormat.ShapeJSR310FormattedSerializerBase. _shapeprotected JsonFormat.ShapeJSR310FormattedSerializerBase. _shapeMethods in com.fasterxml.jackson.datatype.jsr310.ser with parameters of type JsonFormat.Shape Modifier and Type Method Description protected DurationSerializerDurationSerializer. withFormat(Boolean useTimestamp, DateTimeFormatter dtf, JsonFormat.Shape shape)protected com.fasterxml.jackson.datatype.jsr310.ser.JSR310FormattedSerializerBase<Instant>InstantSerializer. withFormat(Boolean useTimestamp, DateTimeFormatter formatter, JsonFormat.Shape shape)protected abstract com.fasterxml.jackson.datatype.jsr310.ser.JSR310FormattedSerializerBase<?>InstantSerializerBase. withFormat(Boolean useTimestamp, DateTimeFormatter dtf, JsonFormat.Shape shape)protected LocalDateSerializerLocalDateSerializer. withFormat(Boolean useTimestamp, DateTimeFormatter dtf, JsonFormat.Shape shape)protected com.fasterxml.jackson.datatype.jsr310.ser.JSR310FormattedSerializerBase<LocalDateTime>LocalDateTimeSerializer. withFormat(Boolean useTimestamp, DateTimeFormatter f, JsonFormat.Shape shape)protected com.fasterxml.jackson.datatype.jsr310.ser.JSR310FormattedSerializerBase<LocalTime>LocalTimeSerializer. withFormat(Boolean useTimestamp, DateTimeFormatter dtf, JsonFormat.Shape shape)protected MonthDaySerializerMonthDaySerializer. withFormat(Boolean useTimestamp, DateTimeFormatter formatter, JsonFormat.Shape shape)protected com.fasterxml.jackson.datatype.jsr310.ser.JSR310FormattedSerializerBase<?>OffsetDateTimeSerializer. withFormat(Boolean useTimestamp, DateTimeFormatter formatter, JsonFormat.Shape shape)protected OffsetTimeSerializerOffsetTimeSerializer. withFormat(Boolean useTimestamp, DateTimeFormatter dtf, JsonFormat.Shape shape)protected YearMonthSerializerYearMonthSerializer. withFormat(Boolean useTimestamp, DateTimeFormatter formatter, JsonFormat.Shape shape)protected YearSerializerYearSerializer. withFormat(Boolean useTimestamp, DateTimeFormatter formatter, JsonFormat.Shape shape)protected com.fasterxml.jackson.datatype.jsr310.ser.JSR310FormattedSerializerBase<?>ZonedDateTimeSerializer. withFormat(Boolean useTimestamp, DateTimeFormatter formatter, JsonFormat.Shape shape)protected com.fasterxml.jackson.datatype.jsr310.ser.JSR310FormattedSerializerBase<?>ZonedDateTimeWithZoneIdSerializer. withFormat(Boolean useTimestamp, DateTimeFormatter formatter, JsonFormat.Shape shape)Deprecated.Constructors in com.fasterxml.jackson.datatype.jsr310.ser with parameters of type JsonFormat.Shape Constructor Description InstantSerializer(InstantSerializer base, Boolean useTimestamp, DateTimeFormatter formatter, JsonFormat.Shape shape)InstantSerializerBase(InstantSerializerBase<T> base, Boolean useTimestamp, Boolean useNanoseconds, DateTimeFormatter dtf, JsonFormat.Shape shape)LocalDateSerializer(LocalDateSerializer base, Boolean useTimestamp, DateTimeFormatter dtf, JsonFormat.Shape shape)OffsetDateTimeSerializer(OffsetDateTimeSerializer base, Boolean useTimestamp, DateTimeFormatter formatter, JsonFormat.Shape shape)ZonedDateTimeSerializer(ZonedDateTimeSerializer base, Boolean useTimestamp, Boolean useNanoseconds, DateTimeFormatter formatter, JsonFormat.Shape shape, Boolean writeZoneId)
-