Package edu.wpi.first.cscore
Enum Class VideoEvent.Kind
- All Implemented Interfaces:
Serializable
,Comparable<VideoEvent.Kind>
,Constable
- Enclosing class:
- VideoEvent
VideoEvent kind.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionNetwork Interfaces Changed event.Sink Created event.Sink Destroyed event.Sink Disabled event.Sink Enabled event.Sink Property Choices Updated event.Sink Property Created event.Sink Property Value Updated event.Sink Source Changed event.Source Connected event.Source Created event.Source Destroyed event.Source Disconnected event.Source Property Choices Updated event.Source Property Created event.Source Property Value Updated event.Source VideoMode Changed event.Source Video Modes Updated event.Telemetry Updated event.Unknown video event.Usb Cameras Changed event. -
Method Summary
Modifier and TypeMethodDescriptionint
getValue()
Returns the kind value.static VideoEvent.Kind
Returns the enum constant of this class with the specified name.static VideoEvent.Kind[]
values()
Returns an array containing the constants of this enum class, 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 class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
Returns the kind value.- Returns:
- The kind value.
-