implicit class FieldDescriptorProtoLens[UpperPB] extends ObjectLens[UpperPB, FieldDescriptorProto]
- Alphabetic
- By Inheritance
- FieldDescriptorProtoLens
- ObjectLens
- Lens
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new FieldDescriptorProtoLens(_l: Lens[UpperPB, FieldDescriptorProto])
Value Members
-
final
def
!=(arg0: scala.Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
:=(a: FieldDescriptorProto): Mutation[UpperPB]
alias to set
alias to set
- Definition Classes
- Lens
-
final
def
==(arg0: scala.Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
compose[B](other: Lens[FieldDescriptorProto, B]): Lens[UpperPB, B]
Composes two lenses, this enables nesting.
Composes two lenses, this enables nesting.
If our field of type A has a sub-field of type B, then given a lens for it (other: Lens[A, B]) we can create a single lens from Container to B.
- Definition Classes
- Lens
- def defaultValue: Lens[UpperPB, String]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: scala.Any): Boolean
- Definition Classes
- AnyRef → Any
- def extendee: Lens[UpperPB, String]
-
def
field[A](getter: (FieldDescriptorProto) ⇒ A)(setter: (FieldDescriptorProto, A) ⇒ FieldDescriptorProto): Lens[UpperPB, A]
Creates a sub-lens
Creates a sub-lens
- Definition Classes
- ObjectLens
-
def
field[A](lens: Lens[FieldDescriptorProto, A]): Lens[UpperPB, A]
Creates a sub-lens
Creates a sub-lens
- Definition Classes
- ObjectLens
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
get(u: UpperPB): FieldDescriptorProto
get knows how to extract some field of type
A
from a containerget knows how to extract some field of type
A
from a container- Definition Classes
- ObjectLens → Lens
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def jsonName: Lens[UpperPB, String]
- def label: Lens[UpperPB, Label]
-
def
modify(f: (FieldDescriptorProto) ⇒ FieldDescriptorProto): Mutation[UpperPB]
Represent an update operator (like x.y += 1 )
Represent an update operator (like x.y += 1 )
- Definition Classes
- Lens
- def name: Lens[UpperPB, String]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def number: Lens[UpperPB, Int]
- def oneofIndex: Lens[UpperPB, Int]
- def optionalDefaultValue: Lens[UpperPB, scala.Option[String]]
- def optionalExtendee: Lens[UpperPB, scala.Option[String]]
- def optionalJsonName: Lens[UpperPB, scala.Option[String]]
- def optionalLabel: Lens[UpperPB, scala.Option[Label]]
- def optionalName: Lens[UpperPB, scala.Option[String]]
- def optionalNumber: Lens[UpperPB, scala.Option[Int]]
- def optionalOneofIndex: Lens[UpperPB, scala.Option[Int]]
- def optionalOptions: Lens[UpperPB, scala.Option[FieldOptions]]
- def optionalProto3Optional: Lens[UpperPB, scala.Option[Boolean]]
- def optionalType: Lens[UpperPB, scala.Option[Type]]
- def optionalTypeName: Lens[UpperPB, scala.Option[String]]
- def options: Lens[UpperPB, FieldOptions]
- def proto3Optional: Lens[UpperPB, Boolean]
-
def
set(c: FieldDescriptorProto): Mutation[UpperPB]
Represents an assignment operator.
Represents an assignment operator.
Given a value of type A, sets knows how to transform a container such that
a
is assigned to the field.We must have get(set(a)(c)) == a
- Definition Classes
- ObjectLens → Lens
-
def
setIfDefined(aOpt: scala.Option[FieldDescriptorProto]): Mutation[UpperPB]
Optional assignment.
Optional assignment.
Given a
Some[A]
, assign theSome
's value to the field. GivenNone
, the container is unchanged.- Definition Classes
- Lens
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
- def type: Lens[UpperPB, Type]
- def typeName: Lens[UpperPB, String]
-
def
update(ms: (Lens[FieldDescriptorProto, FieldDescriptorProto]) ⇒ Mutation[FieldDescriptorProto]*): Mutation[UpperPB]
- Definition Classes
- ObjectLens
-
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( ... ) @native()
-
def
zip[B](other: Lens[UpperPB, B]): Lens[UpperPB, (FieldDescriptorProto, B)]
Given two lenses with the same origin, returns a new lens that can mutate both values represented by both lenses through a tuple.
Given two lenses with the same origin, returns a new lens that can mutate both values represented by both lenses through a tuple.
- Definition Classes
- Lens