public static enum CameraUtils.CameraFacing extends java.lang.Enum<CameraUtils.CameraFacing>
| Enum Constant and Description |
|---|
FacingBack |
FacingFront |
| Modifier and Type | Method and Description |
|---|---|
static CameraUtils.CameraFacing |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CameraUtils.CameraFacing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CameraUtils.CameraFacing FacingFront
public static final CameraUtils.CameraFacing FacingBack
public static CameraUtils.CameraFacing[] values()
for (CameraUtils.CameraFacing c : CameraUtils.CameraFacing.values()) System.out.println(c);
public static CameraUtils.CameraFacing valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null