Package brendes.jna
Enum KK_Library.TcpLogType
java.lang.Object
java.lang.Enum<KK_Library.TcpLogType>
brendes.jna.KK_Library.TcpLogType
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<KK_Library.TcpLogType>
,java.lang.constant.Constable
- Enclosing class:
- KK_Library
public static enum KK_Library.TcpLogType extends java.lang.Enum<KK_Library.TcpLogType>
Defines log entry type values for method
KK_Library.tcpReportLog(int, String, TcpLogType)
- Author:
- Loryn
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description FreqData
Log entry type frequnce data, corresponds with reportmodeKK_Library.LOG_MODE_FREQ
NSZData
Log entry type NSZ data, corresponds with reportmodeKK_Library.LOG_MODE_NSZ
NSZDiffData
Log entry type NSZ difference data, corresponds with reportmodeKK_Library.LOG_MODE_NSZDIFF
PhaseData
Log entry type phase data, corresponds with reportmodeKK_Library.LOG_MODE_PHASE
PhaseDiffData
Log entry type phase difference data, corresponds with reportmodeKK_Library.LOG_MODE_PHASEDIFF
PhasePredecessorData
Log entry type phase difference data to predecessor, corresponds with reportmodeKK_Library.LOG_MODE_PHASEPREDECESSOR
UserData1
Log entry type user defined data 1, corresponds with reportmodeKK_Library.LOG_MODE_USER1
UserData2
Log entry type user defined data 2, corresponds with reportmodeKK_Library.LOG_MODE_USER2
-
Method Summary
Modifier and Type Method Description static KK_Library.TcpLogType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static KK_Library.TcpLogType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PhaseData
Log entry type phase data, corresponds with reportmodeKK_Library.LOG_MODE_PHASE
-
FreqData
Log entry type frequnce data, corresponds with reportmodeKK_Library.LOG_MODE_FREQ
-
PhaseDiffData
Log entry type phase difference data, corresponds with reportmodeKK_Library.LOG_MODE_PHASEDIFF
-
NSZData
Log entry type NSZ data, corresponds with reportmodeKK_Library.LOG_MODE_NSZ
- Since:
- 18.01.10
-
NSZDiffData
Log entry type NSZ difference data, corresponds with reportmodeKK_Library.LOG_MODE_NSZDIFF
- Since:
- 18.01.10
-
PhasePredecessorData
Log entry type phase difference data to predecessor, corresponds with reportmodeKK_Library.LOG_MODE_PHASEPREDECESSOR
- Since:
- 18.02.04
-
UserData1
Log entry type user defined data 1, corresponds with reportmodeKK_Library.LOG_MODE_USER1
- Since:
- 18.02.04
-
UserData2
Log entry type user defined data 2, corresponds with reportmodeKK_Library.LOG_MODE_USER2
- Since:
- 18.02.04
-
-
Method Details
-
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
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-