public static enum MethodLikeNode.MethodLikeKind extends java.lang.Enum<MethodLikeNode.MethodLikeKind>
Enum Constant | Description |
---|---|
CONSTRUCTOR |
|
LAMBDA |
|
METHOD |
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
getPrintableName() |
|
static MethodLikeNode.MethodLikeKind |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static MethodLikeNode.MethodLikeKind[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MethodLikeNode.MethodLikeKind METHOD
public static final MethodLikeNode.MethodLikeKind CONSTRUCTOR
public static final MethodLikeNode.MethodLikeKind LAMBDA
public static MethodLikeNode.MethodLikeKind[] values()
for (MethodLikeNode.MethodLikeKind c : MethodLikeNode.MethodLikeKind.values()) System.out.println(c);
public static MethodLikeNode.MethodLikeKind valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getPrintableName()
Copyright © 2002–2018 PMD. All rights reserved.