コード例 #1
0
  public AudioCodecOptions unmarshall(JsonUnmarshallerContext context) throws Exception {
    AudioCodecOptions audioCodecOptions = new AudioCodecOptions();

    int originalDepth = context.getCurrentDepth();
    String currentParentElement = context.getCurrentParentElement();
    int targetDepth = originalDepth + 1;

    JsonToken token = context.getCurrentToken();
    if (token == null) token = context.nextToken();
    if (token == VALUE_NULL) return null;

    while (true) {
      if (token == null) break;

      if (token == FIELD_NAME || token == START_OBJECT) {
        if (context.testExpression("Profile", targetDepth)) {
          context.nextToken();
          audioCodecOptions.setProfile(StringJsonUnmarshaller.getInstance().unmarshall(context));
        }
        if (context.testExpression("BitDepth", targetDepth)) {
          context.nextToken();
          audioCodecOptions.setBitDepth(StringJsonUnmarshaller.getInstance().unmarshall(context));
        }
        if (context.testExpression("BitOrder", targetDepth)) {
          context.nextToken();
          audioCodecOptions.setBitOrder(StringJsonUnmarshaller.getInstance().unmarshall(context));
        }
        if (context.testExpression("Signed", targetDepth)) {
          context.nextToken();
          audioCodecOptions.setSigned(StringJsonUnmarshaller.getInstance().unmarshall(context));
        }
      } else if (token == END_ARRAY || token == END_OBJECT) {
        if (context.getLastParsedParentElement() == null
            || context.getLastParsedParentElement().equals(currentParentElement)) {
          if (context.getCurrentDepth() <= originalDepth) break;
        }
      }

      token = context.nextToken();
    }

    return audioCodecOptions;
  }