
com.aliyuncs.cdn.transform.v20180510.DescribeEsExceptionDataResponseUnmarshaller Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cdn.transform.v20180510;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cdn.model.v20180510.DescribeEsExceptionDataResponse;
import com.aliyuncs.cdn.model.v20180510.DescribeEsExceptionDataResponse.Content;
import com.aliyuncs.cdn.model.v20180510.DescribeEsExceptionDataResponse.Content.PointsItem;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeEsExceptionDataResponseUnmarshaller {
public static DescribeEsExceptionDataResponse unmarshall(DescribeEsExceptionDataResponse describeEsExceptionDataResponse, UnmarshallerContext _ctx) {
describeEsExceptionDataResponse.setRequestId(_ctx.stringValue("DescribeEsExceptionDataResponse.RequestId"));
List contents = new ArrayList();
for (int i = 0; i < _ctx.lengthValue("DescribeEsExceptionDataResponse.Contents.Length"); i++) {
Content content = new Content();
content.setName(_ctx.stringValue("DescribeEsExceptionDataResponse.Contents["+ i +"].Name"));
List columns = new ArrayList();
for (int j = 0; j < _ctx.lengthValue("DescribeEsExceptionDataResponse.Contents["+ i +"].Columns.Length"); j++) {
columns.add(_ctx.stringValue("DescribeEsExceptionDataResponse.Contents["+ i +"].Columns["+ j +"]"));
}
content.setColumns(columns);
List points = new ArrayList();
for (int j = 0; j < _ctx.lengthValue("DescribeEsExceptionDataResponse.Contents["+ i +"].Points.Length"); j++) {
PointsItem pointsItem = new PointsItem();
List points1 = new ArrayList();
for (int k = 0; k < _ctx.lengthValue("DescribeEsExceptionDataResponse.Contents["+ i +"].Points["+ j +"].Points.Length"); k++) {
points1.add(_ctx.stringValue("DescribeEsExceptionDataResponse.Contents["+ i +"].Points["+ j +"].Points["+ k +"]"));
}
pointsItem.setPoints1(points1);
points.add(pointsItem);
}
content.setPoints(points);
contents.add(content);
}
describeEsExceptionDataResponse.setContents(contents);
return describeEsExceptionDataResponse;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy