io.apicurio.datamodels.models.asyncapi.v22.AsyncApi22ChannelsImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apicurio-data-models Show documentation
Show all versions of apicurio-data-models Show documentation
Open Source API Design Studio
The newest version!
package io.apicurio.datamodels.models.asyncapi.v22;
import io.apicurio.datamodels.models.Node;
import io.apicurio.datamodels.models.NodeImpl;
import io.apicurio.datamodels.models.asyncapi.v22.visitors.AsyncApi22Visitor;
import io.apicurio.datamodels.models.visitors.Visitor;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
public class AsyncApi22ChannelsImpl extends NodeImpl implements AsyncApi22Channels {
private Map _items = new LinkedHashMap<>();
@Override
public AsyncApi22ChannelItem getItem(String name) {
return this._items.get(name);
}
@Override
public List getItems() {
List rval = new ArrayList<>();
rval.addAll(this._items.values());
return rval;
}
@Override
public List getItemNames() {
List rval = new ArrayList<>();
rval.addAll(this._items.keySet());
return rval;
}
@Override
public void addItem(String name, AsyncApi22ChannelItem item) {
this._items.put(name, item);
}
@Override
public AsyncApi22ChannelItem removeItem(String name) {
return this._items.remove(name);
}
@Override
public AsyncApi22ChannelItem createChannelItem() {
AsyncApi22ChannelItemImpl node = new AsyncApi22ChannelItemImpl();
node.setParent(this);
return node;
}
@Override
public void accept(Visitor visitor) {
AsyncApi22Visitor viz = (AsyncApi22Visitor) visitor;
viz.visitChannels(this);
}
@Override
public Node emptyClone() {
return new AsyncApi22ChannelsImpl();
}
}