Package org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.set.field._case
Class SetFieldBuilder
java.lang.Object
org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.set.field._case.SetFieldBuilder
Class that builds
SetField
instances. Overall design of the class is that of a
fluent interface, where method chaining is used.
In general, this class is supposed to be used like this template:
SetField createSetField(int fooXyzzy, int barBaz) {
return new SetFieldBuilder()
.setFoo(new FooBuilder().setXyzzy(fooXyzzy).build())
.setBar(new BarBuilder().setBaz(barBaz).build())
.build();
}
This pattern is supported by the immutable nature of SetField, as instances can be freely passed around without worrying about synchronization issues.
As a side note: method chaining results in:
- very efficient Java bytecode, as the method invocation result, in this case the Builder reference, is
on the stack, so further method invocations just need to fill method arguments for the next method
invocation, which is terminated by
build()
, which is then returned from the method - better understanding by humans, as the scope of mutable state (the builder) is kept to a minimum and is very localized
- better optimization opportunities, as the object scope is minimized in terms of invocation (rather than method) stack, making escape analysis a lot easier. Given enough compiler (JIT/AOT) prowess, the cost of th builder object can be completely eliminated
- See Also:
-
Constructor Summary
ConstructorDescriptionConstruct an empty builder.SetFieldBuilder
(SetField base) Construct a builder initialized with state from specifiedSetField
.SetFieldBuilder
(Match arg) Construct a new builder initialized from specifiedMatch
. -
Method Summary
Modifier and TypeMethodDescriptionaddAugmentation
(org.opendaylight.yangtools.yang.binding.Augmentation<SetField> augmentation) Add an augmentation to this builder's product.<E$$ extends org.opendaylight.yangtools.yang.binding.Augmentation<SetField>>
E$$augmentation
(Class<E$$> augmentationType) Return the specified augmentation, if it is present in this builder.@NonNull SetField
build()
A newSetField
instance.static @NonNull SetField
empty()
Get empty instance of SetField.void
fieldsFrom
(org.opendaylight.yangtools.yang.binding.DataObject arg) Set fields from given grouping argument.Return current value associated with the property corresponding toMatch.getEthernetMatch()
.Return current value associated with the property corresponding toMatch.getIcmpv4Match()
.Return current value associated with the property corresponding toMatch.getIcmpv6Match()
.Return current value associated with the property corresponding toMatch.getInPhyPort()
.Return current value associated with the property corresponding toMatch.getInPort()
.Return current value associated with the property corresponding toMatch.getIpMatch()
.Return current value associated with the property corresponding toMatch.getLayer3Match()
.Return current value associated with the property corresponding toMatch.getLayer4Match()
.Return current value associated with the property corresponding toMatch.getMetadata()
.Return current value associated with the property corresponding toMatch.getPacketTypeMatch()
.Return current value associated with the property corresponding toMatch.getProtocolMatchFields()
.Return current value associated with the property corresponding toMatch.getTcpFlagsMatch()
.Return current value associated with the property corresponding toMatch.getTunnel()
.Return current value associated with the property corresponding toMatch.getVlanMatch()
.removeAugmentation
(Class<? extends org.opendaylight.yangtools.yang.binding.Augmentation<SetField>> augmentationType) Remove an augmentation from this builder's product.setEthernetMatch
(EthernetMatch value) Set the property corresponding toMatch.getEthernetMatch()
to the specified value.setIcmpv4Match
(Icmpv4Match value) Set the property corresponding toMatch.getIcmpv4Match()
to the specified value.setIcmpv6Match
(Icmpv6Match value) Set the property corresponding toMatch.getIcmpv6Match()
to the specified value.setInPhyPort
(NodeConnectorId value) Set the property corresponding toMatch.getInPhyPort()
to the specified value.setInPort
(NodeConnectorId value) Set the property corresponding toMatch.getInPort()
to the specified value.setIpMatch
(IpMatch value) Set the property corresponding toMatch.getIpMatch()
to the specified value.setLayer3Match
(Layer3Match value) Set the property corresponding toMatch.getLayer3Match()
to the specified value.setLayer4Match
(Layer4Match value) Set the property corresponding toMatch.getLayer4Match()
to the specified value.setMetadata
(Metadata value) Set the property corresponding toMatch.getMetadata()
to the specified value.Set the property corresponding toMatch.getPacketTypeMatch()
to the specified value.Set the property corresponding toMatch.getProtocolMatchFields()
to the specified value.setTcpFlagsMatch
(TcpFlagsMatch value) Set the property corresponding toMatch.getTcpFlagsMatch()
to the specified value.Set the property corresponding toMatch.getTunnel()
to the specified value.setVlanMatch
(VlanMatch value) Set the property corresponding toMatch.getVlanMatch()
to the specified value.
-
Constructor Details
-
SetFieldBuilder
public SetFieldBuilder()Construct an empty builder. -
SetFieldBuilder
Construct a new builder initialized from specifiedMatch
.- Parameters:
arg
- Match from which the builder should be initialized
-
SetFieldBuilder
Construct a builder initialized with state from specifiedSetField
.- Parameters:
base
- SetField from which the builder should be initialized
-
-
Method Details
-
fieldsFrom
public void fieldsFrom(org.opendaylight.yangtools.yang.binding.DataObject arg) Set fields from given grouping argument. Valid argument is instance of one of following types:- Parameters:
arg
- grouping object- Throws:
IllegalArgumentException
- if given argument is none of valid types or has property with incompatible value
-
empty
Get empty instance of SetField.- Returns:
- An empty
SetField
-
getEthernetMatch
Return current value associated with the property corresponding toMatch.getEthernetMatch()
.- Returns:
- current value
-
getIcmpv4Match
Return current value associated with the property corresponding toMatch.getIcmpv4Match()
.- Returns:
- current value
-
getIcmpv6Match
Return current value associated with the property corresponding toMatch.getIcmpv6Match()
.- Returns:
- current value
-
getInPhyPort
Return current value associated with the property corresponding toMatch.getInPhyPort()
.- Returns:
- current value
-
getInPort
Return current value associated with the property corresponding toMatch.getInPort()
.- Returns:
- current value
-
getIpMatch
Return current value associated with the property corresponding toMatch.getIpMatch()
.- Returns:
- current value
-
getLayer3Match
Return current value associated with the property corresponding toMatch.getLayer3Match()
.- Returns:
- current value
-
getLayer4Match
Return current value associated with the property corresponding toMatch.getLayer4Match()
.- Returns:
- current value
-
getMetadata
Return current value associated with the property corresponding toMatch.getMetadata()
.- Returns:
- current value
-
getPacketTypeMatch
Return current value associated with the property corresponding toMatch.getPacketTypeMatch()
.- Returns:
- current value
-
getProtocolMatchFields
Return current value associated with the property corresponding toMatch.getProtocolMatchFields()
.- Returns:
- current value
-
getTcpFlagsMatch
Return current value associated with the property corresponding toMatch.getTcpFlagsMatch()
.- Returns:
- current value
-
getTunnel
Return current value associated with the property corresponding toMatch.getTunnel()
.- Returns:
- current value
-
getVlanMatch
Return current value associated with the property corresponding toMatch.getVlanMatch()
.- Returns:
- current value
-
augmentation
public <E$$ extends org.opendaylight.yangtools.yang.binding.Augmentation<SetField>> E$$ augmentation(Class<E$$> augmentationType) Return the specified augmentation, if it is present in this builder.- Type Parameters:
E$$
- augmentation type- Parameters:
augmentationType
- augmentation type class- Returns:
- Augmentation object from this builder, or
null
if not present - Throws:
NullPointerException
- ifaugmentType
isnull
-
setEthernetMatch
Set the property corresponding toMatch.getEthernetMatch()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setIcmpv4Match
Set the property corresponding toMatch.getIcmpv4Match()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setIcmpv6Match
Set the property corresponding toMatch.getIcmpv6Match()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setInPhyPort
Set the property corresponding toMatch.getInPhyPort()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setInPort
Set the property corresponding toMatch.getInPort()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setIpMatch
Set the property corresponding toMatch.getIpMatch()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setLayer3Match
Set the property corresponding toMatch.getLayer3Match()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setLayer4Match
Set the property corresponding toMatch.getLayer4Match()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setMetadata
Set the property corresponding toMatch.getMetadata()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setPacketTypeMatch
Set the property corresponding toMatch.getPacketTypeMatch()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setProtocolMatchFields
Set the property corresponding toMatch.getProtocolMatchFields()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setTcpFlagsMatch
Set the property corresponding toMatch.getTcpFlagsMatch()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setTunnel
Set the property corresponding toMatch.getTunnel()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setVlanMatch
Set the property corresponding toMatch.getVlanMatch()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
addAugmentation
public SetFieldBuilder addAugmentation(org.opendaylight.yangtools.yang.binding.Augmentation<SetField> augmentation) Add an augmentation to this builder's product.- Parameters:
augmentation
- augmentation to be added- Returns:
- this builder
- Throws:
NullPointerException
- ifaugmentation
is null
-
removeAugmentation
public SetFieldBuilder removeAugmentation(Class<? extends org.opendaylight.yangtools.yang.binding.Augmentation<SetField>> augmentationType) Remove an augmentation from this builder's product. If this builder does not track such an augmentation type, this method does nothing.- Parameters:
augmentationType
- augmentation type to be removed- Returns:
- this builder
-
build
A newSetField
instance.- Returns:
- A new
SetField
instance.
-