* commit '843236b6db08e9b5ad58c3730b763b570348f13c': Camera2: implement Key.toString()
This commit is contained in:
@@ -115,6 +115,20 @@ public final class CameraCharacteristics extends CameraMetadata<CameraCharacteri
|
||||
return o instanceof Key && ((Key<T>)o).mKey.equals(mKey);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return this {@link Key} as a string representation.
|
||||
*
|
||||
* <p>{@code "CameraCharacteristics.Key(%s)"}, where {@code %s} represents
|
||||
* the name of this key as returned by {@link #getName}.</p>
|
||||
*
|
||||
* @return string representation of {@link Key}
|
||||
*/
|
||||
@NonNull
|
||||
@Override
|
||||
public String toString() {
|
||||
return String.format("CameraCharacteristics.Key(%s)", mKey.getName());
|
||||
}
|
||||
|
||||
/**
|
||||
* Visible for CameraMetadataNative implementation only; do not use.
|
||||
*
|
||||
|
||||
@@ -149,6 +149,20 @@ public final class CaptureRequest extends CameraMetadata<CaptureRequest.Key<?>>
|
||||
return o instanceof Key && ((Key<T>)o).mKey.equals(mKey);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return this {@link Key} as a string representation.
|
||||
*
|
||||
* <p>{@code "CaptureRequest.Key(%s)"}, where {@code %s} represents
|
||||
* the name of this key as returned by {@link #getName}.</p>
|
||||
*
|
||||
* @return string representation of {@link Key}
|
||||
*/
|
||||
@NonNull
|
||||
@Override
|
||||
public String toString() {
|
||||
return String.format("CaptureRequest.Key(%s)", mKey.getName());
|
||||
}
|
||||
|
||||
/**
|
||||
* Visible for CameraMetadataNative implementation only; do not use.
|
||||
*
|
||||
|
||||
@@ -126,6 +126,20 @@ public class CaptureResult extends CameraMetadata<CaptureResult.Key<?>> {
|
||||
return o instanceof Key && ((Key<T>)o).mKey.equals(mKey);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return this {@link Key} as a string representation.
|
||||
*
|
||||
* <p>{@code "CaptureResult.Key(%s)"}, where {@code %s} represents
|
||||
* the name of this key as returned by {@link #getName}.</p>
|
||||
*
|
||||
* @return string representation of {@link Key}
|
||||
*/
|
||||
@NonNull
|
||||
@Override
|
||||
public String toString() {
|
||||
return String.format("CaptureResult.Key(%s)", mKey.getName());
|
||||
}
|
||||
|
||||
/**
|
||||
* Visible for CameraMetadataNative implementation only; do not use.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user