private void initIds() { if (containers != null) { return; } StrictPreemptionContractProtoOrBuilder p = viaProto ? proto : builder; List<PreemptionContainerProto> list = p.getContainerList(); containers = new HashSet<PreemptionContainer>(); for (PreemptionContainerProto c : list) { containers.add(convertFromProtoFormat(c)); } }
private void addContainersToProto() { maybeInitBuilder(); builder.clearContainer(); if (containers == null) { return; } Iterable<PreemptionContainerProto> iterable = new Iterable<PreemptionContainerProto>() { @Override public Iterator<PreemptionContainerProto> iterator() { return new Iterator<PreemptionContainerProto>() { Iterator<PreemptionContainer> iter = containers.iterator(); @Override public boolean hasNext() { return iter.hasNext(); } @Override public PreemptionContainerProto next() { return convertToProtoFormat(iter.next()); } @Override public void remove() { throw new UnsupportedOperationException(); } }; } }; builder.addAllContainer(iterable); }
private void initPreemptionContainers() { if (containers != null) { return; } PreemptionContractProtoOrBuilder p = viaProto ? proto : builder; List<PreemptionContainerProto> list = p.getContainerList(); containers = new HashSet<PreemptionContainer>(); for (PreemptionContainerProto c : list) { containers.add(convertFromProtoFormat(c)); } }
private void addContainersToProto() { maybeInitBuilder(); builder.clearContainer(); if (null == containers) { return; } Iterable<PreemptionContainerProto> iterable = new Iterable<PreemptionContainerProto>() { @Override public Iterator<PreemptionContainerProto> iterator() { return new Iterator<PreemptionContainerProto>() { Iterator<PreemptionContainer> iter = containers.iterator(); @Override public boolean hasNext() { return iter.hasNext(); } @Override public PreemptionContainerProto next() { return convertToProtoFormat(iter.next()); } @Override public void remove() { throw new UnsupportedOperationException(); } }; } }; builder.addAllContainer(iterable); }
private PreemptionContainerPBImpl convertFromProtoFormat(PreemptionContainerProto p) { return new PreemptionContainerPBImpl(p); }
private PreemptionContainerProto convertToProtoFormat(PreemptionContainer t) { return ((PreemptionContainerPBImpl)t).getProto(); }
public PreemptionContainerPBImpl() { builder = PreemptionContainerProto.newBuilder(); }
public PreemptionContainerPBImpl(PreemptionContainerProto proto) { this.proto = proto; viaProto = true; }