Package edu.wpi.first.cscore
Enum VideoEvent.Kind
- All Implemented Interfaces:
Serializable
,Comparable<VideoEvent.Kind>
,Constable
- Enclosing class:
- VideoEvent
public static enum VideoEvent.Kind extends Enum<VideoEvent.Kind>
VideoEvent kind.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description kNetworkInterfacesChanged
Network Interfaces Changed event.kSinkCreated
Sink Created event.kSinkDestroyed
Sink Destroyed event.kSinkDisabled
Sink Disabled event.kSinkEnabled
Sink Enabled event.kSinkPropertyChoicesUpdated
Sink Property Choices Updated event.kSinkPropertyCreated
Sink Property Created event.kSinkPropertyValueUpdated
Sink Property Value Updated event.kSinkSourceChanged
Sink Source Changed event.kSourceConnected
Source Connected event.kSourceCreated
Source Created event.kSourceDestroyed
Source Destroyed event.kSourceDisconnected
Source Disconnected event.kSourcePropertyChoicesUpdated
Source Property Choices Updated event.kSourcePropertyCreated
Source Property Created event.kSourcePropertyValueUpdated
Source Property Value Updated event.kSourceVideoModeChanged
Source VideoMode Changed event.kSourceVideoModesUpdated
Source Video Modes Updated event.kTelemetryUpdated
Telemetry Updated event.kUnknown
Unknown video event.kUsbCamerasChanged
Usb Cameras Changed event. -
Method Summary
Modifier and Type Method Description int
getValue()
Returns the kind value.static VideoEvent.Kind
valueOf(String name)
Returns the enum constant of this type with the specified name.static VideoEvent.Kind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
kUnknown
Unknown video event. -
kSourceCreated
Source Created event. -
kSourceDestroyed
Source Destroyed event. -
kSourceConnected
Source Connected event. -
kSourceDisconnected
Source Disconnected event. -
kSourceVideoModesUpdated
Source Video Modes Updated event. -
kSourceVideoModeChanged
Source VideoMode Changed event. -
kSourcePropertyCreated
Source Property Created event. -
kSourcePropertyValueUpdated
Source Property Value Updated event. -
kSourcePropertyChoicesUpdated
Source Property Choices Updated event. -
kSinkSourceChanged
Sink Source Changed event. -
kSinkCreated
Sink Created event. -
kSinkDestroyed
Sink Destroyed event. -
kSinkEnabled
Sink Enabled event. -
kSinkDisabled
Sink Disabled event. -
kNetworkInterfacesChanged
Network Interfaces Changed event. -
kTelemetryUpdated
Telemetry Updated event. -
kSinkPropertyCreated
Sink Property Created event. -
kSinkPropertyValueUpdated
Sink Property Value Updated event. -
kSinkPropertyChoicesUpdated
Sink Property Choices Updated event. -
kUsbCamerasChanged
Usb Cameras Changed event.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getValue
Returns the kind value.- Returns:
- The kind value.
-