Enum Network.Type

java.lang.Object
java.lang.Enum<Network.Type>
com.spotify.docker.client.messages.Network.Type
All Implemented Interfaces:
Serializable, Comparable<Network.Type>
Enclosing class:
Network

public static enum Network.Type extends Enum<Network.Type>
Docker networks come in two kinds: built-in or custom.
  • Enum Constant Details

    • BUILTIN

      public static final Network.Type BUILTIN
      Predefined networks that are built-in into Docker.
    • CUSTOM

      public static final Network.Type CUSTOM
      Custom networks that were created by users.
  • Field Details

    • name

      private final String name
  • Constructor Details

    • Type

      private Type(String name)
  • Method Details

    • values

      public static Network.Type[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static Network.Type valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getName

      public String getName()