public enum FrameRate extends Enum<FrameRate>
| Enum Constant and Description |
|---|
FRAMERATE_23 |
FRAMERATE_24 |
FRAMERATE_25 |
FRAMERATE_29 |
FRAMERATE_30 |
FRAMERATE_50 |
FRAMERATE_59 |
FRAMERATE_60 |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static FrameRate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FrameRate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FrameRate FRAMERATE_23
public static final FrameRate FRAMERATE_24
public static final FrameRate FRAMERATE_25
public static final FrameRate FRAMERATE_29
public static final FrameRate FRAMERATE_30
public static final FrameRate FRAMERATE_50
public static final FrameRate FRAMERATE_59
public static final FrameRate FRAMERATE_60
public static FrameRate[] values()
for (FrameRate c : FrameRate.values()) System.out.println(c);
public static FrameRate valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.