Tabnine Logo
State.isStop
Code IndexAdd Tabnine to your IDE (free)

How to use
isStop
method
in
org.apache.flink.cep.nfa.State

Best Java code snippets using org.apache.flink.cep.nfa.State.isStop (Showing top 8 results out of 315)

origin: apache/flink

private boolean isStopState(ComputationState state) {
  State<T> stateObject = getState(state);
  if (stateObject == null) {
    throw new FlinkRuntimeException("State " + state.getCurrentStateName() + " does not exist in the NFA. NFA has states "
      + states.values());
  }
  return stateObject.isStop();
}
origin: apache/flink

State<T> targetState = tStateTransition.getTargetState();
boolean remove = false;
if (targetState.isStop()) {
  for (Tuple2<IterativeCondition<T>, String> notCondition : currentNotCondition) {
    if (targetState.getName().equals(notCondition.f1)) {
origin: org.apache.flink/flink-cep_2.10

public boolean isStopState() {
  return state.isStop();
}
origin: org.apache.flink/flink-cep_2.11

private boolean isStopState(ComputationState state) {
  State<T> stateObject = getState(state);
  if (stateObject == null) {
    throw new FlinkRuntimeException("State " + state.getCurrentStateName() + " does not exist in the NFA. NFA has states "
      + states.values());
  }
  return stateObject.isStop();
}
origin: org.apache.flink/flink-cep

private boolean isStopState(ComputationState state) {
  State<T> stateObject = getState(state);
  if (stateObject == null) {
    throw new FlinkRuntimeException("State " + state.getCurrentStateName() + " does not exist in the NFA. NFA has states "
      + states.values());
  }
  return stateObject.isStop();
}
origin: org.apache.flink/flink-cep

State<T> targetState = tStateTransition.getTargetState();
boolean remove = false;
if (targetState.isStop()) {
  for (Tuple2<IterativeCondition<T>, String> notCondition : currentNotCondition) {
    if (targetState.getName().equals(notCondition.f1)) {
origin: org.apache.flink/flink-cep_2.10

State<T> targetState = tStateTransition.getTargetState();
boolean remove = false;
if (targetState.isStop()) {
  for (Tuple2<IterativeCondition<T>, String> notCondition : currentNotCondition) {
    if (targetState.getName().equals(notCondition.f1)) {
origin: org.apache.flink/flink-cep_2.11

State<T> targetState = tStateTransition.getTargetState();
boolean remove = false;
if (targetState.isStop()) {
  for (Tuple2<IterativeCondition<T>, String> notCondition : currentNotCondition) {
    if (targetState.getName().equals(notCondition.f1)) {
org.apache.flink.cep.nfaStateisStop

Popular methods of State

  • <init>
  • addIgnore
  • addTake
  • getName
  • getStateTransitions
  • isFinal
  • isStart
  • addProceed
  • addStateTransition
  • equals
  • getStateType
  • makeStart
  • getStateType,
  • makeStart

Popular in Java

  • Creating JSON documents from java classes using gson
  • addToBackStack (FragmentTransaction)
  • getSharedPreferences (Context)
  • onRequestPermissionsResult (Fragment)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • String (java.lang)
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Top Vim 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