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

com.sap.cloudfoundry.client.facade.domain.InstanceState Maven / Gradle / Ivy

There is a newer version: 2.56.0
Show newest version
package com.sap.cloudfoundry.client.facade.domain;

import org.cloudfoundry.client.v3.processes.ProcessState;

public enum InstanceState {
    CRASHED, DOWN, RUNNING, STARTING, UNKNOWN;

    public static InstanceState valueOfWithDefault(ProcessState state) {
        if (state == null) {
            return UNKNOWN;
        }
        try {
            return InstanceState.valueOf(state.getValue());
        } catch (IllegalArgumentException e) {
            return InstanceState.UNKNOWN;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy