Enum Class NetworkInterfaceCategory

java.lang.Object
java.lang.Enum<NetworkInterfaceCategory>
com.tccc.kos.core.service.network.beans.NetworkInterfaceCategory
All Implemented Interfaces:
Serializable, Comparable<NetworkInterfaceCategory>, Constable

public enum NetworkInterfaceCategory extends Enum<NetworkInterfaceCategory>
Available interface categories, which is one of the following:
  • INTERNAL : The interface is only used internally within the device.
  • INTEGRATION : The interface is used to integrate to external systems that are local to the device. For example, integration into a point of sale system over a network connection.
  • EXTERNAL : The interface is expected to connect to the internet, either directly or via some external hardware like a modem.
  • NONE : The interface has no category and no logical semantics are applied to it.
Version:
2024-05-24
  • Enum Constant Details

  • Method Details

    • values

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

      public static NetworkInterfaceCategory valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null