Examples of peekElements()


Examples of org.infinispan.tree.Fqn.peekElements()

public class FqnExternalizer implements Externalizer {

   public void writeObject(ObjectOutput output, Object object) throws IOException {
      Fqn fqn = (Fqn) object;
      output.writeShort(fqn.size());
      for (Object element : fqn.peekElements()) output.writeObject(element);
   }

   public Object readObject(ObjectInput input) throws IOException, ClassNotFoundException {
      short size = input.readShort();
      List elements = new ArrayList(size);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.