Enum Class QualifiedNameMode

java.lang.Object
java.lang.Enum<QualifiedNameMode>
net.ssehub.easy.varModel.model.datatypes.QualifiedNameMode
All Implemented Interfaces:
Serializable, Comparable<QualifiedNameMode>, Constable

public enum QualifiedNameMode extends Enum<QualifiedNameMode>
Defines modes for considering the qualified name.
Author:
Holger Eichelberger
  • Enum Constant Details

    • UNQUALIFIED

      public static final QualifiedNameMode UNQUALIFIED
      Use unqualified names always.
    • QUALIFIED

      public static final QualifiedNameMode QUALIFIED
      Use qualified names always.
    • UNIQUE

      public static final QualifiedNameMode UNIQUE
      Use unique names (automatic).
  • Constructor Details

    • QualifiedNameMode

      private QualifiedNameMode()
  • Method Details

    • values

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