Uses of Class
dev.cel.common.CelIssue
-
Packages that use CelIssue Package Description dev.cel.common dev.cel.parser -
-
Uses of CelIssue in dev.cel.common
Methods in dev.cel.common that return CelIssue Modifier and Type Method Description abstract CelIssueCelIssue.Builder. build()static CelIssueCelIssue. formatError(int line, int column, java.lang.String message)BuildCelIssuefrom the given line, column, format string, and arguments.static CelIssueCelIssue. formatError(CelSourceLocation sourceLocation, java.lang.String message)BuildCelIssuefrom the givenCelSourceLocation, format string, and arguments.Methods in dev.cel.common that return types with arguments of type CelIssue Modifier and Type Method Description com.google.common.collect.ImmutableList<CelIssue>CelValidationResult. getAllIssues()Return allCelIssues encountered durint validation.com.google.common.collect.ImmutableList<CelIssue>CelValidationException. getErrors()Returns a list ofCelIssuewith error severity that occurred during validation.com.google.common.collect.ImmutableList<CelIssue>CelValidationResult. getErrors()Return the set ofCelIssues with anERRORseverity.Constructor parameters in dev.cel.common with type arguments of type CelIssue Constructor Description CelValidationException(CelSource source, java.lang.Iterable<CelIssue> errors)CelValidationResult(CelAbstractSyntaxTree ast, com.google.common.collect.ImmutableList<CelIssue> issues)Internal: Consumers should not be creating an instance of this class on their ownCelValidationResult(CelSource source, com.google.common.collect.ImmutableList<CelIssue> issues)Internal: Consumers should not be creating an instance of this class directly.CelValidationResult(CelSource source, java.lang.Throwable failure, com.google.common.collect.ImmutableList<CelIssue> issues)Internal: Consumers should not be creating an instance of this class directly. -
Uses of CelIssue in dev.cel.parser
Methods in dev.cel.parser with parameters of type CelIssue Modifier and Type Method Description abstract CelExprCelExprFactory. reportError(CelIssue error)
-