1 6 package com.hp.hpl.jena.graph.query.regexptrees; 7 8 15 16 public abstract class RegexpTree 17 { 18 public static final RegexpTree EOL = new EndOfLine(); 19 20 public static final RegexpTree SOL = new StartOfLine(); 21 22 public static final RegexpTree ANY = new AnySingle(); 23 24 public static final RegexpTree NON = new Nothing(); 25 26 public abstract boolean equals( Object other ); 27 28 public abstract int hashCode(); 29 30 public abstract String toString(); 31 } 32 33 | Popular Tags |