public enum CaptureSourceType extends java.lang.Enum<CaptureSourceType>
Enum Constant and Description |
---|
APPLICATION_WINDOW
The content is captured from an application window.
|
BROWSER
The content is captured from a
Browser instance. |
SCREEN
The content is captured from a screen.
|
Modifier and Type | Method and Description |
---|---|
static CaptureSourceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CaptureSourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CaptureSourceType BROWSER
Browser
instance.public static final CaptureSourceType APPLICATION_WINDOW
public static final CaptureSourceType SCREEN
public static CaptureSourceType[] values()
for (CaptureSourceType c : CaptureSourceType.values()) System.out.println(c);
public static CaptureSourceType 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