Enum Class IncludeTop

java.lang.Object
java.lang.Enum<IncludeTop>
com._1c.g5.v8.dt.validation.legacy.IncludeTop
All Implemented Interfaces:
Serializable, Comparable<IncludeTop>, Constable

public enum IncludeTop extends Enum<IncludeTop>
Defines the value indicating whether the top object should be included in check process
  • Enum Constant Details

    • DEFAULT

      public static final IncludeTop DEFAULT
      Top object usage is default (taken from validation class annotation)
    • TRUE

      public static final IncludeTop TRUE
      Top object to be included in validation
    • FALSE

      public static final IncludeTop FALSE
      Top object not to be included in validation
  • Method Details

    • values

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