Class ResolvedUnionType
java.lang.Object
com.github.javaparser.resolution.types.ResolvedUnionType
- All Implemented Interfaces:
ResolvedType
A union type is defined in java as list of types separates by pipes.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondescribe()
boolean
int
hashCode()
boolean
isAssignableBy
(ResolvedType other) This method checks if ThisType t = new OtherType() would compile.boolean
Is this a union type (as the ones used in multi catch clauses)?Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.github.javaparser.resolution.types.ResolvedType
arrayLevel, asArrayType, asConstraintType, asPrimitive, asReferenceType, asTypeParameter, asTypeVariable, asWildcard, erasure, isArray, isConstraint, isInferenceVariable, isNull, isNumericType, isPrimitive, isReference, isReferenceType, isTypeVariable, isVoid, isWildcard, mention, replaceTypeVariables, replaceTypeVariables, solveGenericTypes, toDescriptor
-
Field Details
-
elements
-
-
Constructor Details
-
ResolvedUnionType
-
-
Method Details
-
getCommonAncestor
-
equals
-
hashCode
public int hashCode() -
describe
- Specified by:
describe
in interfaceResolvedType
-
isAssignableBy
Description copied from interface:ResolvedType
This method checks if ThisType t = new OtherType() would compile.- Specified by:
isAssignableBy
in interfaceResolvedType
-
isUnionType
public boolean isUnionType()Description copied from interface:ResolvedType
Is this a union type (as the ones used in multi catch clauses)?- Specified by:
isUnionType
in interfaceResolvedType
-
asUnionType
- Specified by:
asUnionType
in interfaceResolvedType
-
getElements
-