Enum PolyglotRepoSupportType
- java.lang.Object
-
- java.lang.Enum<PolyglotRepoSupportType>
-
- de.hybris.platform.persistence.polyglot.config.PolyglotRepoSupportType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PolyglotRepoSupportType>
public enum PolyglotRepoSupportType extends java.lang.Enum<PolyglotRepoSupportType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description PolyglotRepoSupportTypegetHigher(PolyglotRepoSupportType supportType)static PolyglotRepoSupportTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PolyglotRepoSupportType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FULL
public static final PolyglotRepoSupportType FULL
-
PARTIAL
public static final PolyglotRepoSupportType PARTIAL
-
NONE
public static final PolyglotRepoSupportType NONE
-
-
Method Detail
-
values
public static PolyglotRepoSupportType[] 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 (PolyglotRepoSupportType c : PolyglotRepoSupportType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PolyglotRepoSupportType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getHigher
public PolyglotRepoSupportType getHigher(PolyglotRepoSupportType supportType)
-
-