public DescribeVpcsResult unmarshall(StaxUnmarshallerContext context) throws Exception { DescribeVpcsResult describeVpcsResult = new DescribeVpcsResult(); int originalDepth = context.getCurrentDepth(); int targetDepth = originalDepth + 1; if (context.isStartOfDocument()) targetDepth += 1; while (true) { XMLEvent xmlEvent = context.nextEvent(); if (xmlEvent.isEndDocument()) return describeVpcsResult; if (xmlEvent.isAttribute() || xmlEvent.isStartElement()) { if (context.testExpression("vpcSet/item", targetDepth)) { describeVpcsResult.withVpcs(VpcStaxUnmarshaller.getInstance().unmarshall(context)); continue; } } else if (xmlEvent.isEndElement()) { if (context.getCurrentDepth() < originalDepth) { return describeVpcsResult; } } } }
@Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DescribeVpcsResult == false) return false; DescribeVpcsResult other = (DescribeVpcsResult) obj; if (other.getVpcs() == null ^ this.getVpcs() == null) return false; if (other.getVpcs() != null && other.getVpcs().equals(this.getVpcs()) == false) return false; return true; }
public DescribeVpcsResult unmarshall(StaxUnmarshallerContext context) throws Exception { DescribeVpcsResult describeVpcsResult = new DescribeVpcsResult(); int originalDepth = context.getCurrentDepth(); int targetDepth = originalDepth + 1; if (context.isStartOfDocument()) targetDepth += 1; while (true) { int xmlEvent = context.nextEvent(); if (xmlEvent == XmlPullParser.END_DOCUMENT) return describeVpcsResult; if (xmlEvent == XmlPullParser.START_TAG) { if (context.testExpression("vpcSet/item", targetDepth)) { describeVpcsResult.getVpcs().add(VpcStaxUnmarshaller.getInstance().unmarshall(context)); continue; } } else if (xmlEvent == XmlPullParser.END_TAG) { if (context.getCurrentDepth() < originalDepth) { return describeVpcsResult; } } } }