Tabnine Logo
ExecOnceType.getName
Code IndexAdd Tabnine to your IDE (free)

How to use
getName
method
in
com.netflix.imfutility.generated.conversion.ExecOnceType

Best Java code snippets using com.netflix.imfutility.generated.conversion.ExecOnceType.getName (Showing top 9 results out of 315)

origin: DSRCorporation/imf-conversion

private List<OperationInfo> getSubPipeOperations(SubPipeType subPipe) {
  return subPipe.getExecOnce().stream()
      .map(execOnce -> new OperationInfo(execOnce.getValue(), execOnce.getName(), ContextInfo.EMPTY,
          skipOperationResolver
              .setContextInfo(ContextInfo.EMPTY)
              .isSkip(execOnce)))
      .collect(Collectors.toList());
}
origin: DSRCorporation/imf-conversion

private List<OperationInfo> getSubPipeOperations(SubPipeType subPipe) {
  List<OperationInfo> result = new ArrayList<>();
  ContextInfo contextInfo = new ContextInfoBuilder()
      .setSequenceUuid(currentSeqUuid)
      .setSequenceType(seqType)
      .build();
  result.addAll(subPipe.getExecOnce().stream()
      .map(execOnce -> new OperationInfo(execOnce.getValue(), execOnce.getName(), contextInfo,
          skipOperationResolver
              .setContextInfo(contextInfo)
              .isSkip(execOnce, execEachSeq)))
      .collect(Collectors.toList()));
  return result;
}
origin: DSRCorporation/imf-conversion

private List<OperationInfo> getSubPipeOperations(SubPipeType subPipe) {
  ContextInfo contextInfo = new ContextInfoBuilder()
      .setSegmentUuid(currentSegmentUuid)
      .build();
  return subPipe.getExecOnce().stream()
      .map(execOnce -> new OperationInfo(execOnce.getValue(), execOnce.getName(), contextInfo,
          skipOperationResolver
              .setContextInfo(contextInfo)
              .isSkip(execOnce, execEachSegm)))
      .collect(Collectors.toList());
}
origin: DSRCorporation/imf-conversion

private OperationInfo getExecOnceOperation(ExecOnceType execOnce) {
  return new OperationInfo(execOnce.getValue(), execOnce.getName(), ContextInfo.EMPTY,
      skipOperationResolver
          .setContextInfo(ContextInfo.EMPTY)
          .isSkip(execOnce));
}
origin: DSRCorporation/imf-conversion

@Override
public void execute() throws IOException {
  OperationInfo operationInfo = new OperationInfo(operation.getValue(), operation.getName(), ContextInfo.EMPTY,
      skipOperationResolver
          .setContextInfo(ContextInfo.EMPTY)
          .isSkip(operation));
  executeStrategyFactory.createExecuteOnceStrategy(contextProvider).execute(operationInfo);
}
origin: DSRCorporation/imf-conversion

private OperationInfo getExecOnceOperation(ExecOnceType execOnce) {
  ContextInfo contextInfo = new ContextInfoBuilder()
      .setSegmentUuid(currentSegmentUuid)
      .build();
  return new OperationInfo(execOnce.getValue(), execOnce.getName(), contextInfo,
      skipOperationResolver
          .setContextInfo(contextInfo)
          .isSkip(execOnce, execEachSegm));
}
origin: DSRCorporation/imf-conversion

private OperationInfo getExecOnceOperation(ExecOnceType execOnce) {
  ContextInfo contextInfo = new ContextInfoBuilder()
      .setSequenceUuid(currentSeqUuid)
      .setSequenceType(seqType)
      .build();
  return new OperationInfo(execOnce.getValue(), execOnce.getName(), contextInfo,
      skipOperationResolver
          .setContextInfo(contextInfo)
          .isSkip(execOnce, execEachSeq));
}
origin: DSRCorporation/imf-conversion

List<OperationInfo> pipeOperations = new ArrayList<>();
for (ExecOnceType execOnceType : execSegment.getPipe().getExecOnce()) {
  OperationInfo operationInfo = new OperationInfo(execOnceType.getValue(), execOnceType.getName(), contextInfo,
      skipOperationResolver
          .setContextInfo(contextInfo)
origin: DSRCorporation/imf-conversion

List<OperationInfo> pipeOperations = new ArrayList<>();
for (ExecOnceType execOnceType : execSequence.getPipe().getExecOnce()) {
  OperationInfo operationInfo = new OperationInfo(execOnceType.getValue(), execOnceType.getName(), contextInfo,
      skipOperationResolver
          .setContextInfo(contextInfo)
com.netflix.imfutility.generated.conversionExecOnceTypegetName

Popular methods of ExecOnceType

  • <init>
  • getValue
  • setIf
  • setUnless

Popular in Java

  • Creating JSON documents from java classes using gson
  • setScale (BigDecimal)
  • requestLocationUpdates (LocationManager)
  • onRequestPermissionsResult (Fragment)
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • JTable (javax.swing)
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Option (scala)
  • 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