Package com.strobel.decompiler.semantics
Class ResolveResult
- java.lang.Object
-
- com.strobel.decompiler.semantics.ResolveResult
-
- Direct Known Subclasses:
JavaResolver.PrimitiveResolveResult
public class ResolveResult extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private TypeReference
_type
-
Constructor Summary
Constructors Constructor Description ResolveResult(TypeReference type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Iterable<ResolveResult>
getChildResults()
java.lang.Object
getConstantValue()
Region
getDefinitionRegion()
TypeReference
getType()
boolean
isCompileTimeConstant()
boolean
isError()
java.lang.String
toString()
-
-
-
Field Detail
-
_type
private final TypeReference _type
-
-
Constructor Detail
-
ResolveResult
public ResolveResult(TypeReference type)
-
-
Method Detail
-
getType
public final TypeReference getType()
-
isCompileTimeConstant
public boolean isCompileTimeConstant()
-
getConstantValue
public java.lang.Object getConstantValue()
-
isError
public boolean isError()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getChildResults
public final java.lang.Iterable<ResolveResult> getChildResults()
-
getDefinitionRegion
public final Region getDefinitionRegion()
-
-