All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hopper.cloud.airlines.model.FareClass Maven / Gradle / Ivy

The newest version!
/*
 * Airline API
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: v1.0
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package com.hopper.cloud.airlines.model;

import java.io.IOException;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;

/**
 * Fare class of the segment
 */
@JsonAdapter(FareClass.Adapter.class)
public enum FareClass {
  
  BASIC_ECONOMY("basic_economy"),
  
  ECONOMY("economy"),
  
  PREMIUM_ECONOMY("premium_economy"),
  
  BUSINESS("business"),
  
  FIRST("first");

  private String value;

  FareClass(String value) {
    this.value = value;
  }

  public String getValue() {
    return value;
  }

  @Override
  public String toString() {
    return String.valueOf(value);
  }

  public static FareClass fromValue(String value) {
    for (FareClass b : FareClass.values()) {
      if (b.value.equals(value)) {
        return b;
      }
    }
    throw new IllegalArgumentException("Unexpected value '" + value + "'");
  }

  public static class Adapter extends TypeAdapter {
    @Override
    public void write(final JsonWriter jsonWriter, final FareClass enumeration) throws IOException {
      jsonWriter.value(enumeration.getValue());
    }

    @Override
    public FareClass read(final JsonReader jsonReader) throws IOException {
      String value = jsonReader.nextString();
      return FareClass.fromValue(value);
    }
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy