Package io.deephaven.properties
Class PropertyVisitorStringBase
java.lang.Object
io.deephaven.properties.PropertyVisitorStringBase
- All Implemented Interfaces:
PropertyVisitor
- Direct Known Subclasses:
PropertyVisitorStringBase.BiConsumerStringImpl
An
PropertyVisitor
base which converts the non-String valued calls into PropertyVisitor.visit(String, String)
.-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
-
Field Summary
Fields inherited from interface io.deephaven.properties.PropertyVisitor
SEPARATOR
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal void
Equivalent tovisit(key, Boolean.toString(value))
.final void
Equivalent tovisit(key, Integer.toString(value))
.final void
Equivalent tovisit(key, Long.toString(value))
.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface io.deephaven.properties.PropertyVisitor
maybeVisit, maybeVisit, maybeVisit, maybeVisitProperties, visit, visitProperties, visitProperties
-
Constructor Details
-
PropertyVisitorStringBase
public PropertyVisitorStringBase()
-
-
Method Details
-
visit
Equivalent tovisit(key, Integer.toString(value))
.- Specified by:
visit
in interfacePropertyVisitor
- Parameters:
key
- the keyvalue
- the value
-
visit
Equivalent tovisit(key, Long.toString(value))
.- Specified by:
visit
in interfacePropertyVisitor
- Parameters:
key
- the keyvalue
- the value
-
visit
Equivalent tovisit(key, Boolean.toString(value))
.- Specified by:
visit
in interfacePropertyVisitor
- Parameters:
key
- the keyvalue
- the value
-