|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<ExpressionContext>
org.aspectj.org.eclipse.jdt.internal.compiler.ast.ExpressionContext
public enum ExpressionContext
| Enum Constant Summary | |
|---|---|
ASSIGNMENT_CONTEXT
Assignment context: potential poly-expressions are: method invocations, lambdas, reference expressions, conditional expressions and allocation expressions. |
|
CASTING_CONTEXT
Casting context: potential poly-expressions are: lambdas and reference expressions Context induced by: CastExpression. |
|
INVOCATION_CONTEXT
Invocation context: potential poly-expressions are: method invocations, lambdas, reference expressions, conditional expressions and allocation expressions. |
|
VANILLA_CONTEXT
Vanilla context (string, numeric): potential poly-expressions are: NONE. |
|
| Method Summary | |
|---|---|
abstract boolean |
definesTargetType()
|
static ExpressionContext |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ExpressionContext[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ExpressionContext ASSIGNMENT_CONTEXT
public static final ExpressionContext INVOCATION_CONTEXT
public static final ExpressionContext CASTING_CONTEXT
public static final ExpressionContext VANILLA_CONTEXT
| Method Detail |
|---|
public static ExpressionContext[] values()
for (ExpressionContext c : ExpressionContext.values()) System.out.println(c);
public static ExpressionContext 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 name
java.lang.NullPointerException - if the argument is nullpublic abstract boolean definesTargetType()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||