Class Box.BoxBuilder

java.lang.Object
org.ivoa.dm.adqlgeom.Box.BoxBuilder
Enclosing class:
Box

public static class Box.BoxBuilder extends Object
A builder class for Box, mainly for use in the functional builder pattern.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    org.javastro.ivoacore.pgsphere.types.Point
    north-east edge of the box.
    org.javastro.ivoacore.pgsphere.types.Point
    south-west edge of the box.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    create a Box from this builder.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • pos_sw

      public org.javastro.ivoacore.pgsphere.types.Point pos_sw
      south-west edge of the box.
    • pos_ne

      public org.javastro.ivoacore.pgsphere.types.Point pos_ne
      north-east edge of the box.
  • Constructor Details

    • BoxBuilder

      public BoxBuilder()
  • Method Details

    • create

      public Box create()
      create a Box from this builder.
      Returns:
      an object initialized from the builder.