Enum StepType

java.lang.Object
java.lang.Enum<StepType>
org.apache.plc4x.test.driver.internal.StepType
All Implemented Interfaces:
Serializable, Comparable<StepType>

public enum StepType extends Enum<StepType>
________________________PLC ---------- PLC4X --------- Application SEND_PLC_MESSAGE: | invalid input: '<'-------- | | SEND_PLC_BYTES: | invalid input: '<'-------- | | RECEIVE_PLC_MESSAGE: | --------> | | RECEIVE_PLC_BYTES: | --------> | | API_REQUEST: | | invalid input: '<'-------- | API_RESPONSE: | | --------> |
  • Enum Constant Details

    • OUTGOING_PLC_MESSAGE

      public static final StepType OUTGOING_PLC_MESSAGE
    • OUTGOING_PLC_BYTES

      public static final StepType OUTGOING_PLC_BYTES
    • INCOMING_PLC_MESSAGE

      public static final StepType INCOMING_PLC_MESSAGE
    • INCOMING_PLC_BYTES

      public static final StepType INCOMING_PLC_BYTES
    • API_REQUEST

      public static final StepType API_REQUEST
    • API_RESPONSE

      public static final StepType API_RESPONSE
    • DELAY

      public static final StepType DELAY
    • TERMINATE

      public static final StepType TERMINATE
  • Method Details

    • values

      public static StepType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static StepType 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 name
      NullPointerException - if the argument is null