Class PropertyVisitorPrintStream

java.lang.Object
io.deephaven.properties.PropertyVisitorPrintStream
All Implemented Interfaces:
PropertyVisitor

public class PropertyVisitorPrintStream extends Object implements PropertyVisitor
  • Constructor Details

    • PropertyVisitorPrintStream

      public PropertyVisitorPrintStream(PrintStream out)
  • Method Details

    • visit

      public void visit(String key, String value)
      Description copied from interface: PropertyVisitor
      Performs this operation on the given key and String value.
      Specified by:
      visit in interface PropertyVisitor
      Parameters:
      key - the key
      value - the value
    • visit

      public void visit(String key, int value)
      Description copied from interface: PropertyVisitor
      Performs this operation on the given key and int value.
      Specified by:
      visit in interface PropertyVisitor
      Parameters:
      key - the key
      value - the value
    • visit

      public void visit(String key, long value)
      Description copied from interface: PropertyVisitor
      Performs this operation on the given key and long value.
      Specified by:
      visit in interface PropertyVisitor
      Parameters:
      key - the key
      value - the value
    • visit

      public void visit(String key, boolean value)
      Description copied from interface: PropertyVisitor
      Performs this operation on the given key and boolean value.
      Specified by:
      visit in interface PropertyVisitor
      Parameters:
      key - the key
      value - the value