Enum GuixerSyntaxErrorType

java.lang.Object
java.lang.Enum<GuixerSyntaxErrorType>
io.guixer.lang.GuixerSyntaxErrorType
All Implemented Interfaces:
Serializable, Comparable<GuixerSyntaxErrorType>, java.lang.constant.Constable

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

    • SCENARIO_NAME_SHOULD_BE_PRESENT

      public static final GuixerSyntaxErrorType SCENARIO_NAME_SHOULD_BE_PRESENT
    • STEPS_SHOULD_BE_PRESENT

      public static final GuixerSyntaxErrorType STEPS_SHOULD_BE_PRESENT
    • STEPS_SHOULD_BE_A_LIST

      public static final GuixerSyntaxErrorType STEPS_SHOULD_BE_A_LIST
    • STEP_SHOULD_BE_A_MAP

      public static final GuixerSyntaxErrorType STEP_SHOULD_BE_A_MAP
    • ILLEGAL_COMMAND_NAME

      public static final GuixerSyntaxErrorType ILLEGAL_COMMAND_NAME
    • GROUP_NAME_SHOULD_NOT_BE_EMPTY

      public static final GuixerSyntaxErrorType GROUP_NAME_SHOULD_NOT_BE_EMPTY
    • GROUP_NAME_SHOULD_START_BY_AN_UPPERCASE_CHARACTER

      public static final GuixerSyntaxErrorType GROUP_NAME_SHOULD_START_BY_AN_UPPERCASE_CHARACTER
    • GROUP_STEPS_SHOULD_BE_A_LIST

      public static final GuixerSyntaxErrorType GROUP_STEPS_SHOULD_BE_A_LIST
    • SEQ_SHOULD_BE_A_LIST

      public static final GuixerSyntaxErrorType SEQ_SHOULD_BE_A_LIST
    • SEQ_STEP_SHOULD_BE_A_MAP

      public static final GuixerSyntaxErrorType SEQ_STEP_SHOULD_BE_A_MAP
    • SEQ_STEP_SHOULD_BE_A_SINGLETON_MAP

      public static final GuixerSyntaxErrorType SEQ_STEP_SHOULD_BE_A_SINGLETON_MAP
    • SEQ_AND_ASSERT_FALSE_SHOULD_NOT_BE_MIXED

      public static final GuixerSyntaxErrorType SEQ_AND_ASSERT_FALSE_SHOULD_NOT_BE_MIXED
    • SEQ_AND_ASSERT_ABSENT_SHOULD_NOT_BE_MIXED

      public static final GuixerSyntaxErrorType SEQ_AND_ASSERT_ABSENT_SHOULD_NOT_BE_MIXED
    • SEQ_AND_ASSERT_PRESENT_SHOULD_NOT_BE_MIXED

      public static final GuixerSyntaxErrorType SEQ_AND_ASSERT_PRESENT_SHOULD_NOT_BE_MIXED
    • SEQ_AND_CALL_SHOULD_NOT_BE_MIXED

      public static final GuixerSyntaxErrorType SEQ_AND_CALL_SHOULD_NOT_BE_MIXED
    • SEQ_AND_CLEAR_SHOULD_NOT_BE_MIXED

      public static final GuixerSyntaxErrorType SEQ_AND_CLEAR_SHOULD_NOT_BE_MIXED
    • SEQ_AND_CLICK_SHOULD_NOT_BE_MIXED

      public static final GuixerSyntaxErrorType SEQ_AND_CLICK_SHOULD_NOT_BE_MIXED
    • SEQ_AND_GET_SHOULD_NOT_BE_MIXED

      public static final GuixerSyntaxErrorType SEQ_AND_GET_SHOULD_NOT_BE_MIXED
    • SEQ_AND_SEND_KEYS_SHOULD_NOT_BE_MIXED

      public static final GuixerSyntaxErrorType SEQ_AND_SEND_KEYS_SHOULD_NOT_BE_MIXED
    • SEQ_AND_SLEEP_SHOULD_NOT_BE_MIXED

      public static final GuixerSyntaxErrorType SEQ_AND_SLEEP_SHOULD_NOT_BE_MIXED
    • SEQ_AND_SWITCH_TO_FRAME_SHOULD_NOT_BE_MIXED

      public static final GuixerSyntaxErrorType SEQ_AND_SWITCH_TO_FRAME_SHOULD_NOT_BE_MIXED
    • SEQ_AND_WAIT_FOR_SHOULD_NOT_BE_MIXED

      public static final GuixerSyntaxErrorType SEQ_AND_WAIT_FOR_SHOULD_NOT_BE_MIXED
    • SEQ_AND_WAIT_FOR_NOT_SHOULD_NOT_BE_MIXED

      public static final GuixerSyntaxErrorType SEQ_AND_WAIT_FOR_NOT_SHOULD_NOT_BE_MIXED
    • SEQ_AND_COMMAND_SHOULD_NOT_BE_MIXED

      public static final GuixerSyntaxErrorType SEQ_AND_COMMAND_SHOULD_NOT_BE_MIXED
    • INTENT_SHOULD_BE_AT_STEP_TOP_LEVEL

      public static final GuixerSyntaxErrorType INTENT_SHOULD_BE_AT_STEP_TOP_LEVEL
    • TAKE_SCREENSHOT_SHOULD_BE_AT_STEP_TOP_LEVEL

      public static final GuixerSyntaxErrorType TAKE_SCREENSHOT_SHOULD_BE_AT_STEP_TOP_LEVEL
    • DUPLICATE_COMMANDS_IN_ATOMIC_STEP

      public static final GuixerSyntaxErrorType DUPLICATE_COMMANDS_IN_ATOMIC_STEP
  • Method Details

    • values

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