io.apicurio.datamodels.models.asyncapi.v26.AsyncApi26ChannelsImpl 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.v26;
import io.apicurio.datamodels.models.Node;
import io.apicurio.datamodels.models.NodeImpl;
import io.apicurio.datamodels.models.asyncapi.v26.visitors.AsyncApi26Visitor;
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 AsyncApi26ChannelsImpl extends NodeImpl implements AsyncApi26Channels {
private Map _items = new LinkedHashMap<>();
@Override
public AsyncApi26ChannelItem 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, AsyncApi26ChannelItem item) {
this._items.put(name, item);
}
@Override
public AsyncApi26ChannelItem removeItem(String name) {
return this._items.remove(name);
}
@Override
public AsyncApi26ChannelItem createChannelItem() {
AsyncApi26ChannelItemImpl node = new AsyncApi26ChannelItemImpl();
node.setParent(this);
return node;
}
@Override
public void accept(Visitor visitor) {
AsyncApi26Visitor viz = (AsyncApi26Visitor) visitor;
viz.visitChannels(this);
}
@Override
public Node emptyClone() {
return new AsyncApi26ChannelsImpl();
}
}