congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
PipelineExecutionTraceKey.equals
Code IndexAdd Tabnine to your IDE (free)

How to use
equals
method
in
org.guvnor.ala.ui.model.PipelineExecutionTraceKey

Best Java code snippets using org.guvnor.ala.ui.model.PipelineExecutionTraceKey.equals (Showing top 10 results out of 315)

origin: org.kie.workbench/kie-wb-common-ala-ui-api

@Override
public boolean equals(Object o) {
  if (this == o) {
    return true;
  }
  if (o == null || getClass() != o.getClass()) {
    return false;
  }
  PipelineStatusChangeEvent that = (PipelineStatusChangeEvent) o;
  if (pipelineExecutionTraceKey != null ? !pipelineExecutionTraceKey.equals(that.pipelineExecutionTraceKey) : that.pipelineExecutionTraceKey != null) {
    return false;
  }
  return status == that.status;
}
origin: org.guvnor/guvnor-ala-ui-api

@Override
public boolean equals(Object o) {
  if (this == o) {
    return true;
  }
  if (o == null || getClass() != o.getClass()) {
    return false;
  }
  PipelineExecutionChangeEvent that = (PipelineExecutionChangeEvent) o;
  if (change != that.change) {
    return false;
  }
  return pipelineExecutionTraceKey != null ? pipelineExecutionTraceKey.equals(that.pipelineExecutionTraceKey) : that.pipelineExecutionTraceKey == null;
}
origin: org.kie.workbench/kie-wb-common-ala-ui-api

@Override
public boolean equals(Object o) {
  if (this == o) {
    return true;
  }
  if (o == null || getClass() != o.getClass()) {
    return false;
  }
  PipelineExecutionChangeEvent that = (PipelineExecutionChangeEvent) o;
  if (change != that.change) {
    return false;
  }
  return pipelineExecutionTraceKey != null ? pipelineExecutionTraceKey.equals(that.pipelineExecutionTraceKey) : that.pipelineExecutionTraceKey == null;
}
origin: org.guvnor/guvnor-ala-ui-api

@Override
public boolean equals(Object o) {
  if (this == o) {
    return true;
  }
  if (o == null || getClass() != o.getClass()) {
    return false;
  }
  PipelineStatusChangeEvent that = (PipelineStatusChangeEvent) o;
  if (pipelineExecutionTraceKey != null ? !pipelineExecutionTraceKey.equals(that.pipelineExecutionTraceKey) : that.pipelineExecutionTraceKey != null) {
    return false;
  }
  return status == that.status;
}
origin: org.kie.workbench/kie-wb-common-ala-ui-api

@Override
public boolean equals(Object o) {
  if (this == o) {
    return true;
  }
  if (o == null || getClass() != o.getClass()) {
    return false;
  }
  StageStatusChangeEvent that = (StageStatusChangeEvent) o;
  if (pipelineExecutionTraceKey != null ? !pipelineExecutionTraceKey.equals(that.pipelineExecutionTraceKey) : that.pipelineExecutionTraceKey != null) {
    return false;
  }
  if (stage != null ? !stage.equals(that.stage) : that.stage != null) {
    return false;
  }
  return status == that.status;
}
origin: org.guvnor/guvnor-ala-ui-api

@Override
public boolean equals(Object o) {
  if (this == o) {
    return true;
  }
  if (o == null || getClass() != o.getClass()) {
    return false;
  }
  StageStatusChangeEvent that = (StageStatusChangeEvent) o;
  if (pipelineExecutionTraceKey != null ? !pipelineExecutionTraceKey.equals(that.pipelineExecutionTraceKey) : that.pipelineExecutionTraceKey != null) {
    return false;
  }
  if (stage != null ? !stage.equals(that.stage) : that.stage != null) {
    return false;
  }
  return status == that.status;
}
origin: org.guvnor/guvnor-ala-ui-client

public boolean removeItem(final PipelineExecutionTraceKey pipelineExecutionTraceKey) {
  final Optional<RuntimePresenter> value = currentItems.stream()
      .filter(presenter -> !presenter.getItem().isRuntime() &&
          presenter.getItem().getPipelineTrace() != null &&
          pipelineExecutionTraceKey.equals(presenter.getItem().getPipelineTrace().getKey()))
      .findFirst();
  value.ifPresent(this::removeItem);
  return value.isPresent();
}
origin: org.kie.workbench/kie-wb-common-ala-ui-client

public boolean removeItem(final PipelineExecutionTraceKey pipelineExecutionTraceKey) {
  final Optional<RuntimePresenter> value = currentItems.stream()
      .filter(presenter -> !presenter.getItem().isRuntime() &&
          presenter.getItem().getPipelineTrace() != null &&
          pipelineExecutionTraceKey.equals(presenter.getItem().getPipelineTrace().getKey()))
      .findFirst();
  value.ifPresent(this::removeItem);
  return value.isPresent();
}
origin: org.kie.workbench/kie-wb-common-ala-ui-client

private boolean isFromCurrentPipeline(final PipelineExecutionTraceKey pipelineExecutionTraceKey) {
  return item != null &&
      !item.isRuntime() &&
      item.getPipelineTrace().getKey().equals(pipelineExecutionTraceKey);
}
origin: org.guvnor/guvnor-ala-ui-client

private boolean isFromCurrentPipeline(final PipelineExecutionTraceKey pipelineExecutionTraceKey) {
  return item != null &&
      !item.isRuntime() &&
      item.getPipelineTrace().getKey().equals(pipelineExecutionTraceKey);
}
org.guvnor.ala.ui.modelPipelineExecutionTraceKeyequals

Popular methods of PipelineExecutionTraceKey

  • getId
  • <init>
  • hashCode

Popular in Java

  • Finding current android device location
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • notifyDataSetChanged (ArrayAdapter)
  • onCreateOptionsMenu (Activity)
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • Top 25 Plugins for Webstorm
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