Package org.metricshub.winrm
Class WqlRow
java.lang.Object
org.metricshub.winrm.WqlRow
One row of a WQL query result: an immutable, ordered view of the instance properties.
Property lookup is case-insensitive, matching WMI semantics.
-
Method Summary
-
Method Details
-
get
Get the value of a property. The lookup first tries the exact property name, then falls back to a case-insensitive match — WMI property names are case-insensitive.- Parameters:
property- the property name- Returns:
- the property value, or
nullwhen the property is absent or null
-
string
Get the value of a property as a string. Same lookup semantics asget(String).- Parameters:
property- the property name- Returns:
- the property value as a string, or
nullwhen the property is absent or null
-
asMap
Get all properties of the row, in the order the server returned them.- Returns:
- an unmodifiable ordered map of property names to values
-
toString
-