Package io.lakefs.clients.api.model
Enum ObjectStats.PathTypeEnum
- java.lang.Object
-
- java.lang.Enum<ObjectStats.PathTypeEnum>
-
- io.lakefs.clients.api.model.ObjectStats.PathTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ObjectStats.PathTypeEnum>
- Enclosing class:
- ObjectStats
public static enum ObjectStats.PathTypeEnum extends Enum<ObjectStats.PathTypeEnum>
Gets or Sets pathType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classObjectStats.PathTypeEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description COMMON_PREFIXOBJECT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ObjectStats.PathTypeEnumfromValue(String value)StringgetValue()StringtoString()static ObjectStats.PathTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ObjectStats.PathTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMMON_PREFIX
public static final ObjectStats.PathTypeEnum COMMON_PREFIX
-
OBJECT
public static final ObjectStats.PathTypeEnum OBJECT
-
-
Method Detail
-
values
public static ObjectStats.PathTypeEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ObjectStats.PathTypeEnum c : ObjectStats.PathTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ObjectStats.PathTypeEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<ObjectStats.PathTypeEnum>
-
fromValue
public static ObjectStats.PathTypeEnum fromValue(String value)
-
-