Enum TypeCompareEnum
- java.lang.Object
-
- java.lang.Enum<TypeCompareEnum>
-
- jadx.core.dex.visitors.typeinference.TypeCompareEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TypeCompareEnum>
public enum TypeCompareEnum extends java.lang.Enum<TypeCompareEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONFLICTCONFLICT_BY_GENERICEQUALNARROWNARROW_BY_GENERICUNKNOWNWIDERWIDER_BY_GENERIC
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description TypeCompareEnuminvert()booleanisConflict()booleanisEqual()booleanisNarrow()booleanisNarrowOrEqual()booleanisWider()booleanisWiderOrEqual()static TypeCompareEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TypeCompareEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUAL
public static final TypeCompareEnum EQUAL
-
NARROW
public static final TypeCompareEnum NARROW
-
NARROW_BY_GENERIC
public static final TypeCompareEnum NARROW_BY_GENERIC
-
WIDER
public static final TypeCompareEnum WIDER
-
WIDER_BY_GENERIC
public static final TypeCompareEnum WIDER_BY_GENERIC
-
CONFLICT
public static final TypeCompareEnum CONFLICT
-
CONFLICT_BY_GENERIC
public static final TypeCompareEnum CONFLICT_BY_GENERIC
-
UNKNOWN
public static final TypeCompareEnum UNKNOWN
-
-
Method Detail
-
values
public static TypeCompareEnum[] 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 (TypeCompareEnum c : TypeCompareEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TypeCompareEnum 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
-
invert
public TypeCompareEnum invert()
-
isEqual
public boolean isEqual()
-
isWider
public boolean isWider()
-
isWiderOrEqual
public boolean isWiderOrEqual()
-
isNarrow
public boolean isNarrow()
-
isNarrowOrEqual
public boolean isNarrowOrEqual()
-
isConflict
public boolean isConflict()
-
-