Enum Class IdType

java.lang.Object
java.lang.Enum<IdType>
com.xebialabs.xlrelease.repository.IdType
All Implemented Interfaces:
Serializable, Comparable<IdType>, Constable

public enum IdType extends Enum<IdType>
  • Enum Constant Details

    • DOMAIN

      public static final IdType DOMAIN
    • CONFIGURATION

      public static final IdType CONFIGURATION
  • Method Details

    • values

      public static IdType[] 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 IdType 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
    • convertToInternalId

      public abstract String convertToInternalId(String viewId)
    • convertToViewId

      public abstract String convertToViewId(String internalId)