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
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
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic NetworkInterfaceCategoryReturns the enum constant of this class with the specified name.static NetworkInterfaceCategory[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
INTERNAL
-
INTEGRATION
-
EXTERNAL
-
NONE
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-