case class AttrName(value: String) extends Product with Serializable
This definition won't stop you from assigning the wrong type of value to an attribute so be careful. You can use the specific symbol syntax to reduce the danger slightly. The methods on this class are a builder pattern to ultimately create a Attr object.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- AttrName
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new AttrName(value: String)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def -->(value: Function0[_]): Attr
- def -->?[F](value: Option[F])(implicit toJSFunction: (F) => Function0[_]): Attrs
- def :=(value: AttrValue): Attr
- def :=?[A](value: Option[A])(implicit toAttrValue: (A) => AttrValue): Attrs
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def ==>[T](value: Function1[T, _]): Attr
- def ==>?[T, FT](value: Option[FT])(implicit toJsFunction: (FT) => Function1[T, _]): Attrs
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val value: String
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])