Module bus.storage

Enum Class Registry

java.lang.Object
java.lang.Enum<Registry>
org.miaixz.bus.storage.Registry
All Implemented Interfaces:
Serializable, Comparable<Registry>, Constable

public enum Registry extends Enum<Registry>
平台类型
Since:
Java 17+
Author:
Kimi Liu
  • Enum Constant Details

    • ALIYUN

      public static final Registry ALIYUN
      阿里云 OSS
    • AMAZON

      public static final Registry AMAZON
      亚马逊 S3
    • BAIDU

      public static final Registry BAIDU
      百度云 BOS
    • FTP

      public static final Registry FTP
      FTP
    • GITLAB

      public static final Registry GITLAB
      Gitlab
    • GOOGLE

      public static final Registry GOOGLE
      Google CS
    • HUAWEI

      public static final Registry HUAWEI
      华为云 OBS
    • JD

      public static final Registry JD
      京东云 OBS
    • LOCAL

      public static final Registry LOCAL
      本地 file
    • MINIO

      public static final Registry MINIO
      MINIO OSS
    • QINIU

      public static final Registry QINIU
      七牛云 OSS
    • SFTP

      public static final Registry SFTP
      Sftp
    • TENCENT

      public static final Registry TENCENT
      腾讯云 COS
    • UPYUN

      public static final Registry UPYUN
      又拍云 OSS
    • WEBDAV

      public static final Registry WEBDAV
      WEBDAV
  • 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