Module jdk.compiler

Enum Class LambdaExpressionTree.BodyKind

java.lang.Object
java.lang.Enum<LambdaExpressionTree.BodyKind>
com.sun.source.tree.LambdaExpressionTree.BodyKind
All Implemented Interfaces:
Serializable, Comparable<LambdaExpressionTree.BodyKind>, Constable
Enclosing interface:
LambdaExpressionTree

public static enum LambdaExpressionTree.BodyKind extends Enum<LambdaExpressionTree.BodyKind>
Lambda expressions come in two forms:
  • expression lambdas, whose body is an expression, and
  • statement lambdas, whose body is a block
  • Enum Constant Details

  • Method Details

    • values

      public static LambdaExpressionTree.BodyKind[] 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 LambdaExpressionTree.BodyKind 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