geotrellis.rest

ParamParser

object ParamParser extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. ParamParser
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  5. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  6. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  7. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  9. def equals (arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef → Any
  12. def getDouble (s: String): Option[Double]

  13. def getFloat (s: String): Option[Float]

  14. def getInt (s: String): Option[Int]

    Non-exceptions versions of your favorite Java methods!

  15. def getLong (s: String): Option[Long]

  16. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  17. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  18. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  19. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  20. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  21. def parseBox (s: String): Option[(Double, Double, Double, Double)]

    Parse a String into Some[(Double, Double, Double, Double)]; return None on error.

  22. def parseDoubles (s: String): Option[Array[Double]]

    Parse a String into Some[Array[Double]]; return None on error.

  23. def parsePoint (s: String): Option[(Double, Double)]

    Parse a String into Some[(Double, Double)]; return None on error.

  24. def parsePoints (s: String): Option[Array[(Double, Double)]]

    Parse a String into Some[Array[(Double, Double)]]; return None on error.

  25. def parsePolygon (s: String): Option[Array[(Double, Double)]]

    Like parsePoints but ensures that we have at least 3 points.

  26. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  27. def toString (): String

    Definition Classes
    AnyRef → Any
  28. def traverse [A, B] (as: Array[A], f: (A) ⇒ Option[B])(implicit arg0: Manifest[B]): Option[Array[B]]

    Turns out this thing is called traverse()

    Turns out this thing is called traverse()

    The basic idea is to do bs = as.map(f). If bs contains no None values then we return Some(bs). Otherwise we return None, and propagate the "error" up the call.

    It's in scalaz apparently; eventually we might want to consider using that.

  29. def tryIt [A] (a: ⇒ A): Option[A]

    Turn exceptions into Option[A].

    Turn exceptions into Option[A]. It's magic!

  30. def wait (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  31. def wait (arg0: Long, arg1: Int): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  32. def wait (arg0: Long): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any