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

  • Making http requests using okhttp
  • setContentView (Activity)
  • getSystemService (Context)
  • scheduleAtFixedRate (Timer)
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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