case class ConfigurationTemplate extends Product with Serializable
Unreified, immutable template for a Configuration object.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ConfigurationTemplate
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
def
reify(): Configuration
Convert the template into a concrete Configuration object.
Convert the template into a concrete Configuration object. If any values are missing, a Misconfiguration will be thrown
- returns
The complete Configuration object
-
def
requiring[T](prop: Property[T]): ConfigurationTemplate
Set an abstract property that needs to be overridden by another caller before the template can be reified
Set an abstract property that needs to be overridden by another caller before the template can be reified
- returns
A copy of the template with the new abstract property
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
withProp[T](prop: Property[T], value: T): ConfigurationTemplate
Set a default or overridden property value to use in the reified Configuration
Set a default or overridden property value to use in the reified Configuration
- returns
A copy of the template with the new property value set