congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
NFACompiler$NFAFactoryCompiler.getCurrentNotCondition
Code IndexAdd Tabnine to your IDE (free)

How to use
getCurrentNotCondition
method
in
org.apache.flink.cep.nfa.compiler.NFACompiler$NFAFactoryCompiler

Best Java code snippets using org.apache.flink.cep.nfa.compiler.NFACompiler$NFAFactoryCompiler.getCurrentNotCondition (Showing top 8 results out of 315)

origin: apache/flink

final List<Tuple2<IterativeCondition<T>, String>> currentNotCondition = getCurrentNotCondition();
origin: org.apache.flink/flink-cep_2.11

final List<Tuple2<IterativeCondition<T>, String>> currentNotCondition = getCurrentNotCondition();
origin: org.apache.flink/flink-cep_2.10

final List<Tuple2<IterativeCondition<T>, String>> currentNotCondition = getCurrentNotCondition();
origin: org.apache.flink/flink-cep

final List<Tuple2<IterativeCondition<T>, String>> currentNotCondition = getCurrentNotCondition();
origin: org.apache.flink/flink-cep

private void addStopStates(final State<T> state) {
  for (Tuple2<IterativeCondition<T>, String> notCondition: getCurrentNotCondition()) {
    final State<T> stopState = createStopState(notCondition.f0, notCondition.f1);
    state.addProceed(stopState, notCondition.f0);
  }
}
origin: org.apache.flink/flink-cep_2.10

private void addStopStates(final State<T> state) {
  for (Tuple2<IterativeCondition<T>, String> notCondition: getCurrentNotCondition()) {
    final State<T> stopState = createStopState(notCondition.f0, notCondition.f1);
    state.addProceed(stopState, notCondition.f0);
  }
}
origin: org.apache.flink/flink-cep_2.11

private void addStopStates(final State<T> state) {
  for (Tuple2<IterativeCondition<T>, String> notCondition: getCurrentNotCondition()) {
    final State<T> stopState = createStopState(notCondition.f0, notCondition.f1);
    state.addProceed(stopState, notCondition.f0);
  }
}
origin: apache/flink

private void addStopStates(final State<T> state) {
  for (Tuple2<IterativeCondition<T>, String> notCondition: getCurrentNotCondition()) {
    final State<T> stopState = createStopState(notCondition.f0, notCondition.f1);
    state.addProceed(stopState, notCondition.f0);
  }
}
org.apache.flink.cep.nfa.compilerNFACompiler$NFAFactoryCompilergetCurrentNotCondition

Javadoc

Retrieves list of conditions resulting in Stop state and names of the corresponding NOT patterns.

A current not condition can be produced in two cases:

  1. the previous pattern is a Quantifier.ConsumingStrategy#NOT_FOLLOW
  2. exists a backward path of Quantifier.QuantifierProperty#OPTIONAL patterns to Quantifier.ConsumingStrategy#NOT_FOLLOW

WARNING: for more info on the second case see: NFAFactoryCompiler#copyWithoutTransitiveNots(State)

Popular methods of NFACompiler$NFAFactoryCompiler

  • <init>
  • compileFactory
    Compiles the given pattern into a NFAFactory. The NFA factory can be used to create multiple NFAs.
  • getStates
  • addStopStateToLooping
  • addStopStates
  • convertPattern
  • copyWithoutTransitiveNots
    This method creates an alternative state that is target for TAKE transition from an optional State.
  • createEndingState
    Creates the dummy Final State of the NFA graph.
  • createLooping
    Creates the given state as a looping one. Looping state is one with TAKE edge to itself and PROCEED
  • createMiddleStates
    Creates all the states between Start and Final state.
  • createSingletonState
    Creates a simple single state. For an OPTIONAL state it also consists of a similar state without the
  • createStartState
    Creates the Start State of the resulting NFA graph.
  • createSingletonState,
  • createStartState,
  • createState,
  • createStopState,
  • createTimesState,
  • getIgnoreCondition,
  • getInnerIgnoreCondition,
  • getWindowTime,
  • checkPatternNameUniqueness

Popular in Java

  • Creating JSON documents from java classes using gson
  • setRequestProperty (URLConnection)
  • onCreateOptionsMenu (Activity)
  • setContentView (Activity)
  • String (java.lang)
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • BoxLayout (javax.swing)
  • Top 12 Jupyter Notebook Extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now