Skip to main content

The camera ISO values.

class CameraISO

Description:The camera ISO enum value

enum CameraISO

public enum CameraISO {
/*** The ISO value is 100.***/
ISO_100("100"),
/*** The ISO value is 200.***/
ISO_200("200"),
/*** The ISO value is 400.***/
ISO_400("400"),
/*** The ISO value is 800.***/
ISO_800("800"),
/*** The ISO value is 1600.***/
ISO_1600("1600"),
/*** The ISO value is 3200.***/
ISO_3200("3200"),
/*** The ISO value is 6400.***/
ISO_6400("6400"),
/*** The ISO value is 12800.***/
ISO_12800("12800"),
/*** The ISO value is 25600.***/
ISO_25600("25600"),
/*** The ISO value is unknown.*/
UNKNOWN("unknown");
}

Description:The camera ISO enum value