Enum Class OtherBooleansHelper

java.lang.Object
java.lang.Enum<OtherBooleansHelper>
io.kestra.core.runners.handlebars.helpers.OtherBooleansHelper
All Implemented Interfaces:
com.github.jknack.handlebars.Helper<Object>, Serializable, Comparable<OtherBooleansHelper>, Constable

public enum OtherBooleansHelper extends Enum<OtherBooleansHelper> implements com.github.jknack.handlebars.Helper<Object>
  • Enum Constant Details

    • isNull

      public static final OtherBooleansHelper isNull

      Usage: return true if null

          {{isNotNull c}}
       
    • isNotNull

      public static final OtherBooleansHelper isNotNull

      Usage: return true if not null

          {{isNotNull c}}
       
  • Method Details

    • values

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