Enum Class AllowedComputations

java.lang.Object
java.lang.Enum<AllowedComputations>
com._1c.g5.v8.internal.derived.pipeline.AllowedComputations
All Implemented Interfaces:
Serializable, Comparable<AllowedComputations>, Constable

public enum AllowedComputations extends Enum<AllowedComputations>
Defines the set of data/operation types allowed for the computation for the segment of the pipeline being processed at the moment
  • Enum Constant Details

    • BACKGROUND

      public static final AllowedComputations BACKGROUND
      Background operations are allowed for the current stage of the pipeline
    • HALF_EXCLUSIVE

      public static final AllowedComputations HALF_EXCLUSIVE
      Half-exclusive operations are allowed the current stage of the pipeline
    • EXCLUSIVE

      public static final AllowedComputations EXCLUSIVE
      Background operations are allowed for the current stage of the pipeline
    • DATA

      public static final AllowedComputations DATA
      Data computations are allowed
    • IMPORTANT_ONLY

      public static final AllowedComputations IMPORTANT_ONLY
      Modifier applied to all allowed computations which states that all unimportant computations shouldn't be computed
  • Field Details

  • Method Details

    • values

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