JavaNullable
Entries
Fields will be generated as Apollo's com.apollographql.apollo.api.Optional<Type>
if nullable, or Type
if not.
Fields will be generated as Java's java.util.Optional<Type>
if nullable, or Type
if not.
Fields will be generated as Guava's com.google.common.base.Optional<Type>
if nullable, or Type
if not.
Fields will be generated with JetBrain's org.jetbrains.annotations.Nullable
annotation if nullable, or org.jetbrains.annotations.NotNull
if not.
Fields will be generated with Android's androidx.annotation.Nullable
annotation if nullable, or androidx.annotation.NonNull
if not.
Fields will be generated with JSR 305's javax.annotation.Nullable
annotation if nullable, or javax.annotation.Nonnull
if not.
Properties
Functions
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Returns an array containing the constants of this enum type, in the order they're declared.