org.cloudfoundry.client.lib.domain.InstanceState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudfoundry-client-lib Show documentation
Show all versions of cloudfoundry-client-lib Show documentation
A Cloud Foundry client library for Java
The newest version!
package org.cloudfoundry.client.lib.domain;
public enum InstanceState {
DOWN, STARTING, RUNNING, CRASHED, FLAPPING, UNKNOWN;
public static InstanceState valueOfWithDefault(String s) {
try {
return InstanceState.valueOf(s);
} catch (IllegalArgumentException e) {
return InstanceState.UNKNOWN;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy