Enum Class Statements

java.lang.Object
java.lang.Enum<Statements>
edu.university.ecs.lab.detection.metrics.models.Statements
All Implemented Interfaces:
Serializable, Comparable<Statements>, Constable

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

    • OPERATION_NAME

      public static final Statements OPERATION_NAME
    • OPERATION_USE_OF_TYPE

      public static final Statements OPERATION_USE_OF_TYPE
    • OPERATION_PARAM

      public static final Statements OPERATION_PARAM
    • BLANK

      public static final Statements BLANK
    • SERVICE_NAME

      public static final Statements SERVICE_NAME
  • Constructor Details

    • Statements

      private Statements()
  • Method Details

    • values

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