Enum Class Registry

java.lang.Object
java.lang.Enum<Registry>
org.aoju.bus.oauth.Registry
All Implemented Interfaces:
Serializable, Comparable<Registry>, Constable, Complex

public enum Registry extends Enum<Registry> implements Complex
内置的各api需要的url, 用枚举类分平台类型管理
Since:
Java 17+
Author:
Kimi Liu
  • Enum Constant Details

    • ALIPAY

      public static final Registry ALIPAY
      支付宝
    • ALIYUN

      public static final Registry ALIYUN
      阿里云
    • AMAZON

      public static final Registry AMAZON
      Amazon
    • BAIDU

      public static final Registry BAIDU
      百度
    • CODING

      public static final Registry CODING
      Coding
    • DINGTALK

      public static final Registry DINGTALK
      钉钉
    • DOUYIN

      public static final Registry DOUYIN
      抖音
    • ELEME

      public static final Registry ELEME
      饿了么
    • FACEBOOK

      public static final Registry FACEBOOK
      Facebook
    • FEISHU

      public static final Registry FEISHU
      飞书
    • GITEE

      public static final Registry GITEE
      gitee
    • GITHUB

      public static final Registry GITHUB
      Github
    • GITLAB

      public static final Registry GITLAB
      Gitlab
    • GOOGLE

      public static final Registry GOOGLE
      Google
    • HUAWEI

      public static final Registry HUAWEI
      华为
    • JD

      public static final Registry JD
      京东
    • KUJIALE

      public static final Registry KUJIALE
      酷家乐
    • LINE

      public static final Registry LINE
      Line
    • LINKEDIN

      public static final Registry LINKEDIN
      领英
    • MEITUAN

      public static final Registry MEITUAN
      美团
    • MICROSOFT

      public static final Registry MICROSOFT
      微软
    • XIAOMI

      public static final Registry XIAOMI
      小米
    • OSCHINA

      public static final Registry OSCHINA
      oschina 开源中国
    • PINTEREST

      public static final Registry PINTEREST
      Pinterest
    • QQ

      public static final Registry QQ
      QQ
    • RENREN

      public static final Registry RENREN
      人人网
    • STACKOVERFLOW

      public static final Registry STACKOVERFLOW
      Stack Overflow
    • SLACK

      public static final Registry SLACK
      Slack
    • TAOBAO

      public static final Registry TAOBAO
      淘宝
    • TEAMBITION

      public static final Registry TEAMBITION
      Teambition
    • TENCENT

      public static final Registry TENCENT
      腾讯云开发者平台
    • TOUTIAO

      public static final Registry TOUTIAO
      今日头条
    • TWITTER

      public static final Registry TWITTER
      Twitter
    • WECHAT_EE

      public static final Registry WECHAT_EE
      企业微信
    • WECHAT_MP

      public static final Registry WECHAT_MP
      微信公众平台
    • WECHAT_OP

      public static final Registry WECHAT_OP
      微信开放平台
    • WECHAT_MA

      public static final Registry WECHAT_MA
      微信小程序
    • WEIBO

      public static final Registry WEIBO
      新浪微博
    • XMLY

      public static final Registry XMLY
      喜马拉雅
  • Method Details

    • values

      public static Registry[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Registry valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • get

      public static Registry get(String name)