Uses of Class
dev.cel.common.internal.CelCodePointArray
-
Packages that use CelCodePointArray Package Description dev.cel.common dev.cel.common.internal -
-
Uses of CelCodePointArray in dev.cel.common
Methods in dev.cel.common that return CelCodePointArray Modifier and Type Method Description CelCodePointArray
CelSource. getContent()
CelCodePointArray
Source. getContent()
Gets the original textual content of this source, represented in an array of code points.Methods in dev.cel.common with parameters of type CelCodePointArray Modifier and Type Method Description static java.util.Optional<CelSourceLocation>
CelSourceHelper. getOffsetLocation(CelCodePointArray content, int offset)
Get the line and column in the source expression text for the given code pointoffset
.static java.util.Optional<java.lang.String>
CelSourceHelper. getSnippet(CelCodePointArray content, int line)
Extract the snippet text that corresponds toline
.static CelSource.Builder
CelSource. newBuilder(CelCodePointArray codePointArray)
-
Uses of CelCodePointArray in dev.cel.common.internal
Subclasses of CelCodePointArray in dev.cel.common.internal Modifier and Type Class Description class
BasicCodePointArray
An array of code points that contain code points from both the Latin-1 character set and Basic Multilingual Plane.class
Latin1CodePointArray
Represents an in-memory contiguous source of ISO-LATIN-1 code points.class
SupplementalCodePointArray
Array of code points that contain code points from Latin-1 character set, basic multilingual plane or the supplemental multilingual plane.Methods in dev.cel.common.internal that return CelCodePointArray Modifier and Type Method Description static CelCodePointArray
CelCodePointArray. fromString(java.lang.String text)
abstract CelCodePointArray
CelCodePointArray. slice(int i, int j)
Returns a newCelCodePointArray
that is a subview of this between [i, j).Constructors in dev.cel.common.internal with parameters of type CelCodePointArray Constructor Description CodePointStream(java.lang.String sourceName, CelCodePointArray codePoints)
-