Uses of Interface
com.github.javaparser.Provider
-
Packages that use Provider Package Description com.github.javaparser com.github.javaparser.printer.lexicalpreservation -
-
Uses of Provider in com.github.javaparser
Classes in com.github.javaparser that implement Provider Modifier and Type Class Description class
StreamProvider
NOTE : This generated class can be safely deleted if installing in a GWT installation (use StringProvider instead)class
StringProvider
Fields in com.github.javaparser declared as Provider Modifier and Type Field Description protected Provider
JavaCharStream. inputStream
Methods in com.github.javaparser that return Provider Modifier and Type Method Description static Provider
Providers. provider(File file)
static Provider
Providers. provider(File file, Charset encoding)
static Provider
Providers. provider(InputStream input)
static Provider
Providers. provider(InputStream input, Charset encoding)
static Provider
Providers. provider(Reader reader)
static Provider
Providers. provider(String source)
static Provider
Providers. provider(Path path)
static Provider
Providers. provider(Path path, Charset encoding)
static Provider
Providers. resourceProvider(ClassLoader classLoader, String pathToResource, Charset encoding)
Provide a Provider from the resource found in class loader with the provided encoding.
As resource is accessed through a class loader, a leading "/" is not allowed in pathToResourcestatic Provider
Providers. resourceProvider(String pathToResource)
Provide a Provider from the resource found in the current class loader with UTF-8 encoding.
As resource is accessed through a class loader, a leading "/" is not allowed in pathToResourcestatic Provider
Providers. resourceProvider(String pathToResource, Charset encoding)
Provide a Provider from the resource found in the current class loader with the provided encoding.
As resource is accessed through a class loader, a leading "/" is not allowed in pathToResourceMethods in com.github.javaparser with parameters of type Provider Modifier and Type Method Description <N extends Node>
ParseResult<N>JavaParser. parse(ParseStart<N> start, Provider provider)
Parses source code.void
JavaCharStream. ReInit(Provider dstream)
Reinitialise.void
JavaCharStream. ReInit(Provider dstream, int startline, int startcolumn)
Reinitialise.void
JavaCharStream. ReInit(Provider dstream, int startline, int startcolumn, int buffersize)
Reinitialise.Constructors in com.github.javaparser with parameters of type Provider Constructor Description JavaCharStream(Provider dstream)
Constructor.JavaCharStream(Provider dstream, int startline, int startcolumn)
Constructor.JavaCharStream(Provider dstream, int startline, int startcolumn, int buffersize)
Constructor. -
Uses of Provider in com.github.javaparser.printer.lexicalpreservation
Methods in com.github.javaparser.printer.lexicalpreservation with parameters of type Provider Modifier and Type Method Description static <N extends Node>
Pair<ParseResult<N>,LexicalPreservingPrinter>LexicalPreservingPrinter. setup(ParseStart<N> parseStart, Provider provider)
Deprecated.just use the other constructor.
-