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