Enum IMatchable.MatchProperties
- java.lang.Object
-
- java.lang.Enum<IMatchable.MatchProperties>
-
- org.jetbrains.java.decompiler.struct.match.IMatchable.MatchProperties
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<IMatchable.MatchProperties>
- Enclosing interface:
- IMatchable
public static enum IMatchable.MatchProperties extends java.lang.Enum<IMatchable.MatchProperties>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IMatchable.MatchPropertiesvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IMatchable.MatchProperties[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STATEMENT_TYPE
public static final IMatchable.MatchProperties STATEMENT_TYPE
-
STATEMENT_RET
public static final IMatchable.MatchProperties STATEMENT_RET
-
STATEMENT_STATSIZE
public static final IMatchable.MatchProperties STATEMENT_STATSIZE
-
STATEMENT_EXPRSIZE
public static final IMatchable.MatchProperties STATEMENT_EXPRSIZE
-
STATEMENT_POSITION
public static final IMatchable.MatchProperties STATEMENT_POSITION
-
STATEMENT_IFTYPE
public static final IMatchable.MatchProperties STATEMENT_IFTYPE
-
EXPRENT_TYPE
public static final IMatchable.MatchProperties EXPRENT_TYPE
-
EXPRENT_RET
public static final IMatchable.MatchProperties EXPRENT_RET
-
EXPRENT_POSITION
public static final IMatchable.MatchProperties EXPRENT_POSITION
-
EXPRENT_FUNCTYPE
public static final IMatchable.MatchProperties EXPRENT_FUNCTYPE
-
EXPRENT_EXITTYPE
public static final IMatchable.MatchProperties EXPRENT_EXITTYPE
-
EXPRENT_CONSTTYPE
public static final IMatchable.MatchProperties EXPRENT_CONSTTYPE
-
EXPRENT_CONSTVALUE
public static final IMatchable.MatchProperties EXPRENT_CONSTVALUE
-
EXPRENT_INVOCATION_CLASS
public static final IMatchable.MatchProperties EXPRENT_INVOCATION_CLASS
-
EXPRENT_INVOCATION_SIGNATURE
public static final IMatchable.MatchProperties EXPRENT_INVOCATION_SIGNATURE
-
EXPRENT_INVOCATION_PARAMETER
public static final IMatchable.MatchProperties EXPRENT_INVOCATION_PARAMETER
-
EXPRENT_VAR_INDEX
public static final IMatchable.MatchProperties EXPRENT_VAR_INDEX
-
EXPRENT_FIELD_NAME
public static final IMatchable.MatchProperties EXPRENT_FIELD_NAME
-
-
Method Detail
-
values
public static IMatchable.MatchProperties[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IMatchable.MatchProperties c : IMatchable.MatchProperties.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IMatchable.MatchProperties valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-