- java.lang.Object
- 
- jdk.jshell.SourceCodeAnalysis.QualifiedNames
 
- 
- Enclosing class:
- SourceCodeAnalysis
 
 
 public static final class SourceCodeAnalysis.QualifiedNames extends Object List of possible qualified names.
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getNames()Known qualified names for the given simple name in the original code.intgetSimpleNameLength()The length of the simple name in the original code for which the qualified names where gathered.booleanisResolvable()Indicates whether the given simple name in the original code refers to a resolvable element.booleanisUpToDate()Indicates whether the result is based on up-to-date data.
 
- 
- 
- 
Method Detail- 
getNamespublic List<String> getNames() Known qualified names for the given simple name in the original code.- Returns:
- known qualified names
 
 - 
getSimpleNameLengthpublic int getSimpleNameLength() The length of the simple name in the original code for which the qualified names where gathered.- Returns:
- the length of the simple name; -1 if there is no name immediately left to the cursor for which the candidates could be computed
 
 - 
isUpToDatepublic boolean isUpToDate() Indicates whether the result is based on up-to-date data. ThelistQualifiedNamesmethod may return before the classpath is fully inspected, in which case this method will returnfalse. If the result is based on a fully inspected classpath, this method will returntrue.- Returns:
- trueif the result is based on up-to-date data; otherwise- false
 
 - 
isResolvablepublic boolean isResolvable() Indicates whether the given simple name in the original code refers to a resolvable element.- Returns:
- trueif the given simple name in the original code refers to a resolvable element; otherwise- false
 
 
- 
 
-