Packages

c

play.core.routing

DynamicPart

case class DynamicPart(name: String, constraint: String, encodeable: Boolean) extends PathPart with Product with Serializable

A dynamically extracted part of the path.

name

The name of the part.

constraint

The constraint - that is, the type.

encodeable

Whether the path should be encoded/decoded.

Source
PathPattern.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, PathPart, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DynamicPart
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. PathPart
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DynamicPart(name: String, constraint: String, encodeable: Boolean)

    name

    The name of the part.

    constraint

    The constraint - that is, the type.

    encodeable

    Whether the path should be encoded/decoded.

Value Members

  1. val constraint: String
  2. val encodeable: Boolean
  3. val name: String
  4. def toString(): String
    Definition Classes
    DynamicPart → AnyRef → Any