public enum JSTimingMode extends Enum<JSTimingMode>
FramePosition or Estimated.| Enum Constant and Description |
|---|
Blocking
Blocking timing mode.
|
Estimated
Estimated timing mode.
|
FramePosition
FramePosition timing mode.
|
| Modifier and Type | Method and Description |
|---|---|
static JSTimingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JSTimingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JSTimingMode Blocking
public static final JSTimingMode FramePosition
public static final JSTimingMode Estimated
public static JSTimingMode[] values()
for (JSTimingMode c : JSTimingMode.values()) System.out.println(c);
public static JSTimingMode 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.