Class UnknownSymbolicChar
- java.lang.Object
-
- it.unive.lisa.util.datastructures.regex.symbolic.SymbolicChar
-
- it.unive.lisa.util.datastructures.regex.symbolic.UnknownSymbolicChar
-
public class UnknownSymbolicChar extends SymbolicChar
AnSymbolicChar
representing an unknown character.
-
-
Field Summary
Fields Modifier and Type Field Description static UnknownSymbolicChar
INSTANCE
The singleton instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
is(char ch)
Yieldstrue
if and only if this symbolic character represent the given concrete one.-
Methods inherited from class it.unive.lisa.util.datastructures.regex.symbolic.SymbolicChar
asChar, equals, hashCode, toString
-
-
-
-
Field Detail
-
INSTANCE
public static final UnknownSymbolicChar INSTANCE
The singleton instance.
-
-
Method Detail
-
is
public boolean is(char ch)
Description copied from class:SymbolicChar
Yieldstrue
if and only if this symbolic character represent the given concrete one.- Overrides:
is
in classSymbolicChar
- Parameters:
ch
- the character- Returns:
true
if that condition holds
-
-