Uses of Interface
com.karneim.util.collection.set.ISet_char

Packages that use ISet_char
com.karneim.util.collection.automaton   
com.karneim.util.collection.regex   
com.karneim.util.collection.set   
 

Uses of ISet_char in com.karneim.util.collection.automaton
 

Fields in com.karneim.util.collection.automaton declared as ISet_char
 ISet_char Automaton.State.Transition.charSet
           
 

Methods in com.karneim.util.collection.automaton that return ISet_char
 ISet_char Automaton.State.Transition.getCharSet()
           
 

Methods in com.karneim.util.collection.automaton with parameters of type ISet_char
protected  Automaton.State.Transition Automaton.State.addTransition(IProperties properties, ISet_char charSet, Automaton.State toState)
           
 

Constructors in com.karneim.util.collection.automaton with parameters of type ISet_char
Automaton.State.Transition(IProperties properties, ISet_char charSet, Automaton.State toState)
          constructs a Transition that can transit with charSet's chars to toState.
 

Uses of ISet_char in com.karneim.util.collection.regex
 

Methods in com.karneim.util.collection.regex with parameters of type ISet_char
protected  Automaton.State.Transition Automaton_Pattern.PState.addTransition(IProperties properties, ISet_char charSet, Automaton.State toState)
           
 

Constructors in com.karneim.util.collection.regex with parameters of type ISet_char
Automaton_Pattern(ISet_char fullSet)
           
Pattern(ISet_char fullSet)
           
PatternPro(ISet_char fullSet)
           
 

Uses of ISet_char in com.karneim.util.collection.set
 

Classes in com.karneim.util.collection.set that implement ISet_char
 class CharSet
           
 

Fields in com.karneim.util.collection.set declared as ISet_char
protected static ISet_char AutomatonSet_String.FULLSET
           
protected  ISet_char AutomatonSet_String.fullSet
           
 

Methods in com.karneim.util.collection.set that return ISet_char
 ISet_char SAutomaton.Transition.getCharSet()
           
 ISet_char IStatePro.ITransition.getCharSet()
           
 

Methods in com.karneim.util.collection.set with parameters of type ISet_char
 void ISet_char.addAll(ISet_char set)
          adds all chars from set to this ISet_char without adding doublicates.
 void ISet_char.removeAll(ISet_char set)
          Removes from this set all of its elements that are contained in the specified set (optional operation).
 void ISet_char.retainAll(ISet_char set)
           
 IStatePro.ITransition SAutomaton.StatePro.addTransition(ISet_char charSet, IStatePro toState)
           
 IStatePro.ITransition IStatePro.addTransition(ISet_char charSet, IStatePro toState)
          Adds a new transition to this state.
protected  Automaton.State.Transition AutomatonSet_String.SState.addTransition(IProperties properties, ISet_char charSet, Automaton.State toState)
           
 void CharSet.addAll(ISet_char set)
          adds all chars from set to this ISet_char without adding doublicates.
 void CharSet.removeAll(ISet_char set)
          Removes from this set all of its elements that are contained in the specified set (optional operation).
 void CharSet.retainAll(ISet_char set)
           
 

Constructors in com.karneim.util.collection.set with parameters of type ISet_char
AutomatonSet_String(ISet_char fullSet)