Package com.courier.models
Class Expo
-
- All Implemented Interfaces:
public final class Expo
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceExpo.VisitorAn interface that defines how to map each variant of Expo to a value of type T.
-
Method Summary
Modifier and Type Method Description final Optional<Token>token()final Optional<MultipleTokens>multipleTokens()final BooleanisToken()final BooleanisMultipleTokens()final TokenasToken()final MultipleTokensasMultipleTokens()final Optional<JsonValue>_json()final <T extends Any> Taccept(Expo.Visitor<T> visitor)Maps this instance's current variant to a value of type T using the given visitor. final Expovalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static ExpoofToken(Token token)final static ExpoofMultipleTokens(MultipleTokens multipleTokens)-
-
Method Detail
-
multipleTokens
final Optional<MultipleTokens> multipleTokens()
-
isMultipleTokens
final Boolean isMultipleTokens()
-
asMultipleTokens
final MultipleTokens asMultipleTokens()
-
accept
final <T extends Any> T accept(Expo.Visitor<T> visitor)
Maps this instance's current variant to a value of type T using the given visitor.
Note that this method is not forwards compatible with new variants from the API, unless visitor overrides Visitor.unknown. To handle variants not known to this version of the SDK gracefully, consider overriding Visitor.unknown:
import com.courier.core.JsonValue; import java.util.Optional; Optional<String> result = expo.accept(new Expo.Visitor<Optional<String>>() { @Override public Optional<String> visitToken(Token token) { return Optional.of(token.toString()); } // ... @Override public Optional<String> unknown(JsonValue json) { // Or inspect the `json`. return Optional.empty(); } });
-
validate
final Expo validate()
Validates that the types of all values in this object match their expected types recursively.
This method is not forwards compatible with new types from the API for existing fields.
-
ofMultipleTokens
final static Expo ofMultipleTokens(MultipleTokens multipleTokens)
-
-
-
-