@Deprecated
public static final class SCameraCharacteristics.Key<T>
extends java.lang.Object
Key
is used to do camera characteristics field lookups with
SCameraCharacteristics.get(com.samsung.android.sdk.camera.SCameraCharacteristics.Key<T>)
.
For example, to get the stream configuration map:
StreamConfigurationMap map = cameraCharacteristics.get(
SCameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP);
To enumerate over all possible keys for SCameraCharacteristics
, see
SCameraCharacteristics.getKeys()
.
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getName()
Deprecated.
Return a camelCase, period separated name formatted like:
"root.section[.subsections].name" . |
public java.lang.String getName()
"root.section[.subsections].name"
.
Built-in keys exposed by the Android SDK are always prefixed with "android."
;
keys that are device/platform-specific are prefixed with "com."
.
For example, SCameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP
would
have a name of "android.scaler.streamConfigurationMap"
; whereas a device
specific key might look like "com.google.nexus.data.private"
.
Copyright © Samsung Electronics, Co., Ltd. All rights reserved.