Enum Class AbfsServiceType

java.lang.Object
java.lang.Enum<AbfsServiceType>
org.apache.hadoop.fs.azurebfs.constants.AbfsServiceType
All Implemented Interfaces:
Serializable, Comparable<AbfsServiceType>, Constable

public enum AbfsServiceType extends Enum<AbfsServiceType>
Azure Storage Offers two sets of Rest APIs for interacting with the storage account.
  1. Blob Rest API:
  2. Data Lake Rest API:
  • Enum Constant Details

    • DFS

      public static final AbfsServiceType DFS
      Service type to set operative endpoint as Data Lake Rest API.
    • BLOB

      public static final AbfsServiceType BLOB
      Service type to set operative endpoint as Blob Rest API.
  • Method Details

    • values

      public static AbfsServiceType[] 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 AbfsServiceType 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