public class ErrorsBuilder extends Object implements org.opendaylight.yangtools.concepts.Builder<Errors>
ErrorsBuilder 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:
ErrorsBuilder createTarget(int fooXyzzy, int barBaz) {
return new ErrorsBuilderBuilder()
.setFoo(new FooBuilder().setXyzzy(fooXyzzy).build())
.setBar(new BarBuilder().setBaz(barBaz).build())
.build();
}
This pattern is supported by the immutable nature of ErrorsBuilder, as instances can be freely passed around without worrying about synchronization issues.
As a side note: method chaining results in:
build(), which is then returned from the methodErrorsBuilder,
Builder| Constructor and Description |
|---|
ErrorsBuilder() |
ErrorsBuilder(Errors base) |
ErrorsBuilder(PcepErrorObject arg) |
| Modifier and Type | Method and Description |
|---|---|
ErrorsBuilder |
addAugmentation(Class<? extends org.opendaylight.yangtools.yang.binding.Augmentation<Errors>> augmentationType,
org.opendaylight.yangtools.yang.binding.Augmentation<Errors> augmentationValue) |
<E$$ extends org.opendaylight.yangtools.yang.binding.Augmentation<Errors>> |
augmentation(Class<E$$> augmentationType) |
Errors |
build() |
void |
fieldsFrom(org.opendaylight.yangtools.yang.binding.DataObject arg)
Set fields from given grouping argument.
|
ErrorObject |
getErrorObject() |
ErrorsBuilder |
removeAugmentation(Class<? extends org.opendaylight.yangtools.yang.binding.Augmentation<Errors>> augmentationType) |
ErrorsBuilder |
setErrorObject(ErrorObject value) |
public ErrorsBuilder()
public ErrorsBuilder(PcepErrorObject arg)
public ErrorsBuilder(Errors base)
public void fieldsFrom(org.opendaylight.yangtools.yang.binding.DataObject arg)
arg - grouping objectIllegalArgumentException - if given argument is none of valid typespublic ErrorObject getErrorObject()
public <E$$ extends org.opendaylight.yangtools.yang.binding.Augmentation<Errors>> E$$ augmentation(Class<E$$> augmentationType)
public ErrorsBuilder setErrorObject(ErrorObject value)
public ErrorsBuilder addAugmentation(Class<? extends org.opendaylight.yangtools.yang.binding.Augmentation<Errors>> augmentationType, org.opendaylight.yangtools.yang.binding.Augmentation<Errors> augmentationValue)
public ErrorsBuilder removeAugmentation(Class<? extends org.opendaylight.yangtools.yang.binding.Augmentation<Errors>> augmentationType)
public Errors build()
build in interface org.opendaylight.yangtools.concepts.CheckedBuilder<Errors,IllegalArgumentException>Copyright © 2020 OpenDaylight. All rights reserved.