org.immutables.fixture.jackson.JacksonNullable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of value-fixture Show documentation
Show all versions of value-fixture Show documentation
Module that contains all tests for the code generation capability
package org.immutables.fixture.jackson;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import org.immutables.value.Value;
import javax.annotation.Nullable;
@Value.Immutable
@JsonSerialize(as = ImmutableJacksonNullable.class)
@JsonDeserialize(builder = ImmutableJacksonNullable.Builder.class)
public interface JacksonNullable {
String notNullable();
@Nullable
String nullable();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy