com.fitbur.github.dockerjava.api.model.InternetProtocol Maven / Gradle / Ivy
package com.fitbur.github.dockerjava.api.model;
/**
* The IP protocols supported by Docker.
*
* @see #TCP
* @see #UDP
*/
public enum InternetProtocol {
/** The Transmission Control Protocol */
TCP,
/** The User Datagram Protocol */
UDP;
/**
* The com.fitburfault {@link InternetProtocol}: {@link #TCP}
*/
public static final InternetProtocol DEFAULT = TCP;
/**
* Returns a string representation of this {@link InternetProtocol} suitable for inclusion in a JSON message. The
* output is the lowercased name of the Protocol, e.g. tcp
.
*
* @return a string representation of this {@link InternetProtocol}
*/
@Override
public String toString() {
return super.toString().toLowerCase();
}
/**
* Parses a string to an {@link InternetProtocol}.
*
* @param serialized
* the protocol, e.g. tcp
or TCP
* @return an {@link InternetProtocol} com.fitburscribed by the string
* @throws IllegalArgumentException
* if the argument cannot be parsed
*/
public static InternetProtocol parse(String serialized) throws IllegalArgumentException {
try {
return valueOf(serialized.toUpperCase());
} catch (Exception e) {
throw new IllegalArgumentException("Error parsing Protocol '" + serialized + "'");
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy