Codota Logo
ExportStatus
Code IndexAdd Codota to your IDE (free)

How to use
ExportStatus
in
software.amazon.awssdk.services.applicationdiscovery.model

Best Java code snippets using software.amazon.awssdk.services.applicationdiscovery.model.ExportStatus (Showing top 12 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Charset c =
  • Codota IconString charsetName;Charset.forName(charsetName)
  • Codota IconCharset.defaultCharset()
  • Codota IconContentType contentType;contentType.getCharset()
  • Smart code suggestions by Codota
}
origin: aws/aws-sdk-java-v2

/**
 * <p>
 * The status of the data export job.
 * </p>
 * <p>
 * If the service returns an enum value that is not available in the current SDK version, {@link #exportStatus} will
 * return {@link ExportStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
 * {@link #exportStatusAsString}.
 * </p>
 * 
 * @return The status of the data export job.
 * @see ExportStatus
 */
public ExportStatus exportStatus() {
  return ExportStatus.fromValue(exportStatus);
}
origin: aws/aws-sdk-java-v2

/**
 * Use this in place of valueOf to convert the raw string returned by the service into the enum value.
 *
 * @param value
 *        real value
 * @return ExportStatus corresponding to the value
 */
public static ExportStatus fromValue(String value) {
  if (value == null) {
    return null;
  }
  return Stream.of(ExportStatus.values()).filter(e -> e.toString().equals(value)).findFirst()
      .orElse(UNKNOWN_TO_SDK_VERSION);
}
origin: aws/aws-sdk-java-v2

  /**
   * Use this in place of {@link #values()} to return a {@link Set} of all values known to the SDK. This will return
   * all known enum values except {@link #UNKNOWN_TO_SDK_VERSION}.
   *
   * @return a {@link Set} of known {@link ExportStatus}s
   */
  public static Set<ExportStatus> knownValues() {
    return Stream.of(values()).filter(v -> v != UNKNOWN_TO_SDK_VERSION).collect(toSet());
  }
}
origin: aws/aws-sdk-java-v2

@Override
public final Builder exportStatus(ExportStatus exportStatus) {
  this.exportStatus(exportStatus.toString());
  return this;
}
origin: software.amazon.awssdk/applicationdiscovery

/**
 * Use this in place of valueOf to convert the raw string returned by the service into the enum value.
 *
 * @param value
 *        real value
 * @return ExportStatus corresponding to the value
 */
public static ExportStatus fromValue(String value) {
  if (value == null) {
    return null;
  }
  return Stream.of(ExportStatus.values()).filter(e -> e.toString().equals(value)).findFirst()
      .orElse(UNKNOWN_TO_SDK_VERSION);
}
origin: software.amazon.awssdk/applicationdiscovery

  /**
   * Use this in place of {@link #values()} to return a {@link Set} of all values known to the SDK. This will return
   * all known enum values except {@link #UNKNOWN_TO_SDK_VERSION}.
   *
   * @return a {@link Set} of known {@link ExportStatus}s
   */
  public static Set<ExportStatus> knownValues() {
    return Stream.of(values()).filter(v -> v != UNKNOWN_TO_SDK_VERSION).collect(toSet());
  }
}
origin: software.amazon.awssdk/applicationdiscovery

@Override
public final Builder exportStatus(ExportStatus exportStatus) {
  this.exportStatus(exportStatus.toString());
  return this;
}
origin: software.amazon.awssdk/discovery

/**
 * Use this in place of valueOf to convert the raw string returned by the service into the enum value.
 *
 * @param value
 *        real value
 * @return ExportStatus corresponding to the value
 */
public static ExportStatus fromValue(String value) {
  if (value == null) {
    return null;
  }
  return Stream.of(ExportStatus.values()).filter(e -> e.toString().equals(value)).findFirst()
      .orElse(UNKNOWN_TO_SDK_VERSION);
}
origin: software.amazon.awssdk/discovery

  /**
   * Use this in place of {@link #values()} to return a {@link Set} of all values known to the SDK. This will return
   * all known enum values except {@link #UNKNOWN_TO_SDK_VERSION}.
   *
   * @return a {@link Set} of known {@link ExportStatus}s
   */
  public static Set<ExportStatus> knownValues() {
    return Stream.of(values()).filter(v -> v != UNKNOWN_TO_SDK_VERSION).collect(toSet());
  }
}
origin: software.amazon.awssdk/discovery

@Override
public final Builder exportStatus(ExportStatus exportStatus) {
  this.exportStatus(exportStatus.toString());
  return this;
}
origin: software.amazon.awssdk/discovery

/**
 * <p>
 * The status of the data export job.
 * </p>
 * <p>
 * If the service returns an enum value that is not available in the current SDK version, {@link #exportStatus} will
 * return {@link ExportStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
 * {@link #exportStatusAsString}.
 * </p>
 * 
 * @return The status of the data export job.
 * @see ExportStatus
 */
public ExportStatus exportStatus() {
  return ExportStatus.fromValue(exportStatus);
}
origin: software.amazon.awssdk/applicationdiscovery

/**
 * <p>
 * The status of the data export job.
 * </p>
 * <p>
 * If the service returns an enum value that is not available in the current SDK version, {@link #exportStatus} will
 * return {@link ExportStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
 * {@link #exportStatusAsString}.
 * </p>
 * 
 * @return The status of the data export job.
 * @see ExportStatus
 */
public ExportStatus exportStatus() {
  return ExportStatus.fromValue(exportStatus);
}
software.amazon.awssdk.services.applicationdiscovery.modelExportStatus

Most used methods

  • fromValue
    Use this in place of valueOf to convert the raw string returned by the service into the enum value.
  • toString
  • values

Popular in Java

  • Running tasks concurrently on multiple threads
  • getApplicationContext (Context)
  • addToBackStack (FragmentTransaction)
  • onCreateOptionsMenu (Activity)
  • MalformedURLException (java.net)
    Thrown to indicate that a malformed URL has occurred. Either no legal protocol could be found in a s
  • Permission (java.security)
    Abstract class for representing access to a system resource. All permissions have a name (whose inte
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Logger (org.slf4j)
    The main user interface to logging. It is expected that logging takes place through concrete impleme
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now