Class PhysicalSwitchAugmentationBuilder
java.lang.Object
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ovsdb.hwvtep.rev150901.PhysicalSwitchAugmentationBuilder
Class that builds
PhysicalSwitchAugmentation
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:
PhysicalSwitchAugmentation createPhysicalSwitchAugmentation(int fooXyzzy, int barBaz) {
return new PhysicalSwitchAugmentationBuilder()
.setFoo(new FooBuilder().setXyzzy(fooXyzzy).build())
.setBar(new BarBuilder().setBaz(barBaz).build())
.build();
}
This pattern is supported by the immutable nature of PhysicalSwitchAugmentation, 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
ConstructorsConstructorDescriptionConstruct an empty builder.Construct a new builder initialized from specifiedHwvtepNodeIdentification
.Construct a new builder initialized from specifiedHwvtepPhysicalSwitchAttributes
.Construct a builder initialized with state from specifiedPhysicalSwitchAugmentation
. -
Method Summary
Modifier and TypeMethodDescription@NonNull PhysicalSwitchAugmentation
build()
A newPhysicalSwitchAugmentation
instance.void
fieldsFrom
(org.opendaylight.yangtools.yang.binding.DataObject arg) Set fields from given grouping argument.Return current value associated with the property corresponding toHwvtepNodeIdentification.getHwvtepNodeDescription()
.Return current value associated with the property corresponding toHwvtepNodeIdentification.getHwvtepNodeName()
.Return current value associated with the property corresponding toHwvtepPhysicalSwitchAttributes.getManagedBy()
.Return current value associated with the property corresponding toHwvtepPhysicalSwitchAttributes.getManagementIps()
.org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid
Return current value associated with the property corresponding toHwvtepPhysicalSwitchAttributes.getPhysicalSwitchUuid()
.Return current value associated with the property corresponding toHwvtepPhysicalSwitchAttributes.getSwitchFaultStatus()
.Return current value associated with the property corresponding toHwvtepPhysicalSwitchAttributes.getTunnelIps()
.Return current value associated with the property corresponding toHwvtepPhysicalSwitchAttributes.getTunnels()
.setHwvtepNodeDescription
(String value) Set the property corresponding toHwvtepNodeIdentification.getHwvtepNodeDescription()
to the specified value.setHwvtepNodeName
(HwvtepNodeName value) Set the property corresponding toHwvtepNodeIdentification.getHwvtepNodeName()
to the specified value.setManagedBy
(HwvtepGlobalRef value) Set the property corresponding toHwvtepPhysicalSwitchAttributes.getManagedBy()
to the specified value.setManagementIps
(Map<ManagementIpsKey, ManagementIps> values) Set the property corresponding toHwvtepPhysicalSwitchAttributes.getManagementIps()
to the specified value.setPhysicalSwitchUuid
(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid value) Set the property corresponding toHwvtepPhysicalSwitchAttributes.getPhysicalSwitchUuid()
to the specified value.Set the property corresponding toHwvtepPhysicalSwitchAttributes.getSwitchFaultStatus()
to the specified value.setTunnelIps
(Map<TunnelIpsKey, TunnelIps> values) Set the property corresponding toHwvtepPhysicalSwitchAttributes.getTunnelIps()
to the specified value.setTunnels
(Map<TunnelsKey, Tunnels> values) Set the property corresponding toHwvtepPhysicalSwitchAttributes.getTunnels()
to the specified value.
-
Constructor Details
-
PhysicalSwitchAugmentationBuilder
public PhysicalSwitchAugmentationBuilder()Construct an empty builder. -
PhysicalSwitchAugmentationBuilder
Construct a new builder initialized from specifiedHwvtepPhysicalSwitchAttributes
.- Parameters:
arg
- HwvtepPhysicalSwitchAttributes from which the builder should be initialized
-
PhysicalSwitchAugmentationBuilder
Construct a new builder initialized from specifiedHwvtepNodeIdentification
.- Parameters:
arg
- HwvtepNodeIdentification from which the builder should be initialized
-
PhysicalSwitchAugmentationBuilder
Construct a builder initialized with state from specifiedPhysicalSwitchAugmentation
.- Parameters:
base
- PhysicalSwitchAugmentation 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
-
getHwvtepNodeDescription
Return current value associated with the property corresponding toHwvtepNodeIdentification.getHwvtepNodeDescription()
.- Returns:
- current value
-
getHwvtepNodeName
Return current value associated with the property corresponding toHwvtepNodeIdentification.getHwvtepNodeName()
.- Returns:
- current value
-
getManagedBy
Return current value associated with the property corresponding toHwvtepPhysicalSwitchAttributes.getManagedBy()
.- Returns:
- current value
-
getManagementIps
Return current value associated with the property corresponding toHwvtepPhysicalSwitchAttributes.getManagementIps()
.- Returns:
- current value
-
getPhysicalSwitchUuid
public org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid getPhysicalSwitchUuid()Return current value associated with the property corresponding toHwvtepPhysicalSwitchAttributes.getPhysicalSwitchUuid()
.- Returns:
- current value
-
getSwitchFaultStatus
Return current value associated with the property corresponding toHwvtepPhysicalSwitchAttributes.getSwitchFaultStatus()
.- Returns:
- current value
-
getTunnelIps
Return current value associated with the property corresponding toHwvtepPhysicalSwitchAttributes.getTunnelIps()
.- Returns:
- current value
-
getTunnels
Return current value associated with the property corresponding toHwvtepPhysicalSwitchAttributes.getTunnels()
.- Returns:
- current value
-
setHwvtepNodeDescription
Set the property corresponding toHwvtepNodeIdentification.getHwvtepNodeDescription()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setHwvtepNodeName
Set the property corresponding toHwvtepNodeIdentification.getHwvtepNodeName()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setManagedBy
Set the property corresponding toHwvtepPhysicalSwitchAttributes.getManagedBy()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setManagementIps
public PhysicalSwitchAugmentationBuilder setManagementIps(Map<ManagementIpsKey, ManagementIps> values) Set the property corresponding toHwvtepPhysicalSwitchAttributes.getManagementIps()
to the specified value.- Parameters:
values
- desired value- Returns:
- this builder
-
setPhysicalSwitchUuid
public PhysicalSwitchAugmentationBuilder setPhysicalSwitchUuid(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid value) Set the property corresponding toHwvtepPhysicalSwitchAttributes.getPhysicalSwitchUuid()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setSwitchFaultStatus
public PhysicalSwitchAugmentationBuilder setSwitchFaultStatus(Map<SwitchFaultStatusKey, SwitchFaultStatus> values) Set the property corresponding toHwvtepPhysicalSwitchAttributes.getSwitchFaultStatus()
to the specified value.- Parameters:
values
- desired value- Returns:
- this builder
-
setTunnelIps
Set the property corresponding toHwvtepPhysicalSwitchAttributes.getTunnelIps()
to the specified value.- Parameters:
values
- desired value- Returns:
- this builder
-
setTunnels
Set the property corresponding toHwvtepPhysicalSwitchAttributes.getTunnels()
to the specified value.- Parameters:
values
- desired value- Returns:
- this builder
-
build
A newPhysicalSwitchAugmentation
instance.- Returns:
- A new
PhysicalSwitchAugmentation
instance.
-