Package io.lakefs.clients.sdk.model
Enum Diff.PathTypeEnum
- java.lang.Object
-
- java.lang.Enum<Diff.PathTypeEnum>
-
- io.lakefs.clients.sdk.model.Diff.PathTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<Diff.PathTypeEnum>
- Enclosing class:
- Diff
public static enum Diff.PathTypeEnum extends Enum<Diff.PathTypeEnum>
Gets or Sets pathType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDiff.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 Diff.PathTypeEnumfromValue(String value)StringgetValue()StringtoString()static Diff.PathTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static Diff.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 Diff.PathTypeEnum COMMON_PREFIX
-
OBJECT
public static final Diff.PathTypeEnum OBJECT
-
-
Method Detail
-
values
public static Diff.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 (Diff.PathTypeEnum c : Diff.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 Diff.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<Diff.PathTypeEnum>
-
fromValue
public static Diff.PathTypeEnum fromValue(String value)
-
-