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

com.evernote.edam.type.PrivilegeLevel Maven / Gradle / Ivy

The newest version!
/**
 * Autogenerated by Thrift
 *
 * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
 */
package com.evernote.edam.type;


import java.util.Map;
import java.util.HashMap;
import com.evernote.thrift.TEnum;

/**
 * This enumeration defines the possible permission levels for a user.
 * Free accounts will have a level of NORMAL and paid Premium accounts
 * will have a level of PREMIUM.
 */
public enum PrivilegeLevel implements TEnum {
  NORMAL(1),
  PREMIUM(3),
  VIP(5),
  MANAGER(7),
  SUPPORT(8),
  ADMIN(9);

  private final int value;

  private PrivilegeLevel(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 PrivilegeLevel findByValue(int value) { 
    switch (value) {
      case 1:
        return NORMAL;
      case 3:
        return PREMIUM;
      case 5:
        return VIP;
      case 7:
        return MANAGER;
      case 8:
        return SUPPORT;
      case 9:
        return ADMIN;
      default:
        return null;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy