Enum ScreenShareIssue
- Object
-
- Enum<ScreenShareIssue>
-
- ScreenShareIssue
-
- All Implemented Interfaces:
Serializable
,Comparable<ScreenShareIssue>
public enum ScreenShareIssue extends Enum<ScreenShareIssue>
Possible values for common screen share issues
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANNOT_PRESENT
FREEZES
LARGE_DELAY
LOW_QUALITY
NO_CONTENT_LOCAL
NO_CONTENT_REMOTE
NONE
OTHER_ISSUES
STOPPED_UNEXPECTEDLY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ScreenShareIssue
valueOf(String name)
Returns the enum constant of this type with the specified name.static ScreenShareIssue[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final ScreenShareIssue NONE
-
NO_CONTENT_LOCAL
public static final ScreenShareIssue NO_CONTENT_LOCAL
-
NO_CONTENT_REMOTE
public static final ScreenShareIssue NO_CONTENT_REMOTE
-
CANNOT_PRESENT
public static final ScreenShareIssue CANNOT_PRESENT
-
LOW_QUALITY
public static final ScreenShareIssue LOW_QUALITY
-
FREEZES
public static final ScreenShareIssue FREEZES
-
STOPPED_UNEXPECTEDLY
public static final ScreenShareIssue STOPPED_UNEXPECTEDLY
-
LARGE_DELAY
public static final ScreenShareIssue LARGE_DELAY
-
OTHER_ISSUES
public static final ScreenShareIssue OTHER_ISSUES
-
-
Method Detail
-
values
public static ScreenShareIssue[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ScreenShareIssue c : ScreenShareIssue.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ScreenShareIssue valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-