Package software.amazon.awssdk.crt
Enum Log.LogSubject
- java.lang.Object
-
- java.lang.Enum<Log.LogSubject>
-
- software.amazon.awssdk.crt.Log.LogSubject
-
- All Implemented Interfaces:
Serializable
,Comparable<Log.LogSubject>
- Enclosing class:
- Log
public static enum Log.LogSubject extends Enum<Log.LogSubject>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
static Log.LogSubject
valueOf(String name)
Returns the enum constant of this type with the specified name.static Log.LogSubject[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CommonGeneral
public static final Log.LogSubject CommonGeneral
-
CommonTaskScheduler
public static final Log.LogSubject CommonTaskScheduler
-
IoGeneral
public static final Log.LogSubject IoGeneral
-
IoEventLoop
public static final Log.LogSubject IoEventLoop
-
IoSocket
public static final Log.LogSubject IoSocket
-
IoSocketHandler
public static final Log.LogSubject IoSocketHandler
-
IoTls
public static final Log.LogSubject IoTls
-
IoAlpn
public static final Log.LogSubject IoAlpn
-
IoDns
public static final Log.LogSubject IoDns
-
IoPki
public static final Log.LogSubject IoPki
-
IoChannel
public static final Log.LogSubject IoChannel
-
IoChannelBootstrap
public static final Log.LogSubject IoChannelBootstrap
-
IoFileUtils
public static final Log.LogSubject IoFileUtils
-
IoSharedLibrary
public static final Log.LogSubject IoSharedLibrary
-
HttpGeneral
public static final Log.LogSubject HttpGeneral
-
HttpConnection
public static final Log.LogSubject HttpConnection
-
HttpServer
public static final Log.LogSubject HttpServer
-
HttpStream
public static final Log.LogSubject HttpStream
-
HttpConnectionManager
public static final Log.LogSubject HttpConnectionManager
-
HttpWebsocket
public static final Log.LogSubject HttpWebsocket
-
HttpWebsocketSetup
public static final Log.LogSubject HttpWebsocketSetup
-
MqttGeneral
public static final Log.LogSubject MqttGeneral
-
MqttClient
public static final Log.LogSubject MqttClient
-
MqttTopicTree
public static final Log.LogSubject MqttTopicTree
-
AuthGeneral
public static final Log.LogSubject AuthGeneral
-
AuthProfile
public static final Log.LogSubject AuthProfile
-
AuthCredentialsProvider
public static final Log.LogSubject AuthCredentialsProvider
-
AuthSigning
public static final Log.LogSubject AuthSigning
-
EventStreamServerListener
public static final Log.LogSubject EventStreamServerListener
-
S3Client
public static final Log.LogSubject S3Client
-
JavaCrtGeneral
public static final Log.LogSubject JavaCrtGeneral
-
JavaCrtResource
public static final Log.LogSubject JavaCrtResource
-
JavaCrtS3
public static final Log.LogSubject JavaCrtS3
-
-
Method Detail
-
values
public static Log.LogSubject[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Log.LogSubject c : Log.LogSubject.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Log.LogSubject 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 nameNullPointerException
- if the argument is null
-
getValue
public int getValue()
-
-