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 SummaryEnum Constants Enum Constant Description CANNOT_PRESENTFREEZESLARGE_DELAYLOW_QUALITYNO_CONTENT_LOCALNO_CONTENT_REMOTENONEOTHER_ISSUESSTOPPED_UNEXPECTEDLY
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static ScreenShareIssuevalueOf(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- 
NONEpublic static final ScreenShareIssue NONE 
 - 
NO_CONTENT_LOCALpublic static final ScreenShareIssue NO_CONTENT_LOCAL 
 - 
NO_CONTENT_REMOTEpublic static final ScreenShareIssue NO_CONTENT_REMOTE 
 - 
CANNOT_PRESENTpublic static final ScreenShareIssue CANNOT_PRESENT 
 - 
LOW_QUALITYpublic static final ScreenShareIssue LOW_QUALITY 
 - 
FREEZESpublic static final ScreenShareIssue FREEZES 
 - 
STOPPED_UNEXPECTEDLYpublic static final ScreenShareIssue STOPPED_UNEXPECTEDLY 
 - 
LARGE_DELAYpublic static final ScreenShareIssue LARGE_DELAY 
 - 
OTHER_ISSUESpublic static final ScreenShareIssue OTHER_ISSUES 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-