nullableFieldStyle
The style to use for fields that are nullable in the Java generated code.
Acceptable values:
none: Fields will be generated with the same type whether they are nullable or notapolloOptional: Fields will be generated as Apollo'scom.apollographql.apollo.api.Optional<Type>if nullable, orTypeif not.javaOptional: Fields will be generated as Java'sjava.util.Optional<Type>if nullable, orTypeif not.guavaOptional: Fields will be generated as Guava'scom.google.common.base.Optional<Type>if nullable, orTypeif not.jetbrainsAnnotations: Fields will be generated with Jetbrain'sorg.jetbrains.annotations.Nullableannotation if nullable, ororg.jetbrains.annotations.NotNullif not.androidAnnotations: Fields will be generated with Android'sandroidx.annotation.Nullableannotation if nullable, orandroidx.annotation.NonNullif not.jsr305Annotations: Fields will be generated with JSR 305'sjavax.annotation.Nullableannotation if nullable, orjavax.annotation.Nonnullif not.
Default: none