![JAR search and dependency download from the Maven repository](/logo.png)
com.jelastic.api.system.persistence.FirewallRuleDirection Maven / Gradle / Ivy
The newest version!
/*Server class MD5: c134393930cd512074691e38869ec251*/
package com.jelastic.api.system.persistence;
/**
* @name Jelastic API Client
* @version 8.11.2
* @copyright Jelastic, Inc.
*/
public enum FirewallRuleDirection {
INPUT("IN"), OUTPUT("OUT"), BIDIRECTIONAL("BI");
FirewallRuleDirection(String alias) {
this.alias = alias;
}
private String alias;
public static FirewallRuleDirection value(String value) {
if (value == null) {
return null;
}
for (FirewallRuleDirection type : values()) {
if (type.toString().equals(value.toUpperCase()) || type.alias.equals(value.toUpperCase())) {
return type;
}
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy