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

cicada.userdriver.config.GetUserInfosBySearchStatus Maven / Gradle / Ivy

There is a newer version: 1.0.6.6
Show newest version
/**
 * Autogenerated by Thrift Compiler (0.10.0)
 *
 * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
 *  @generated
 */
package cicada.userdriver.config;


import java.util.Map;
import java.util.HashMap;
import org.apache.thrift.TEnum;

public enum GetUserInfosBySearchStatus implements org.apache.thrift.TEnum {
  Success(0),
  InvalidSex(1),
  InvalidAge(2),
  InvalidProfession(3),
  InvalidNativePlace(4),
  InvalidBelife(5),
  InvalidYearOfBirth(6),
  InvalidConstellation(7),
  NoExist(8),
  InvalidParam(9),
  InvalidPageIndex(10),
  InvalidPageSize(11),
  InvalidNickName(12);

  private final int value;

  private GetUserInfosBySearchStatus(int value) {
    this.value = value;
  }

  /**
   * Get the integer value of this enum value, as defined in the Thrift IDL.
   */
  public int getValue() {
    return value;
  }

  /**
   * Find a the enum type by its integer value, as defined in the Thrift IDL.
   * @return null if the value is not found.
   */
  public static GetUserInfosBySearchStatus findByValue(int value) { 
    switch (value) {
      case 0:
        return Success;
      case 1:
        return InvalidSex;
      case 2:
        return InvalidAge;
      case 3:
        return InvalidProfession;
      case 4:
        return InvalidNativePlace;
      case 5:
        return InvalidBelife;
      case 6:
        return InvalidYearOfBirth;
      case 7:
        return InvalidConstellation;
      case 8:
        return NoExist;
      case 9:
        return InvalidParam;
      case 10:
        return InvalidPageIndex;
      case 11:
        return InvalidPageSize;
      case 12:
        return InvalidNickName;
      default:
        return null;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy