Package io.zenoh.query
Enum QueryTarget
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum QueryTarget extends Enum<QueryTarget>
The Queryables that should be targeted by a GET operation.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BEST_MATCHING
Best Matching: the nearest complete queryable if any else all matching queryables.
ALL
All matching queryables.
ALL_COMPLETE
All Complete queryables.
-
Method Summary
Modifier and Type Method Description final QueryTarget
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<QueryTarget>
values()
Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final QueryTarget valueOf(String value)
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.)
-
values
final Array<QueryTarget> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
-
-
-