All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebean.docker.container.StopMode Maven / Gradle / Ivy

There is a newer version: 5.4
Show newest version
package io.ebean.docker.container;

public enum StopMode {
  Stop, None, Remove;

  public static StopMode of(String mode) {
    if ("remove".equalsIgnoreCase(mode)) {
      return Remove;
    }
    if ("none".equalsIgnoreCase(mode)) {
      return None;
    }
    return Stop;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy