io.cloudslang.content.amazon.entities.aws.VolumeStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cs-amazon Show documentation
Show all versions of cs-amazon Show documentation
Java actions for amazon integration
/*
* (c) Copyright 2017 EntIT Software LLC, a Micro Focus company, L.P.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Apache License v2.0 which accompany this distribution.
*
* The Apache License is available at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.cloudslang.content.amazon.entities.aws;
import org.jetbrains.annotations.NotNull;
import static io.cloudslang.content.amazon.entities.constants.Constants.Miscellaneous.NOT_RELEVANT;
import static org.apache.commons.lang3.StringUtils.isBlank;
/**
* Created by sandorr
* 2/14/2017.
*/
public enum VolumeStatus {
CREATING("creating"),
AVAILABLE("available"),
IN_USE("in-use"),
DELETING("deleting"),
DELETED("deleted"),
ERROR("error");
public static final String INVALID_STATUS_VALUE_FORMAT = "Invalid status value: [%s]. Valid values: creating, available, in-use, deleting, deleted, error.";
private final String key;
VolumeStatus(String key) {
this.key = key;
}
public String getKey() {
return key;
}
public static String getValue(@NotNull final String input) {
if (isBlank(input)) {
return NOT_RELEVANT;
}
for (final VolumeStatus volumeStatus : VolumeStatus.values()) {
if (volumeStatus.getKey().equalsIgnoreCase(input)) {
return volumeStatus.getKey().toLowerCase();
}
}
throw new RuntimeException(String.format(INVALID_STATUS_VALUE_FORMAT, input));
}
}