Examples of WxMenuBtnTypeEnum


Examples of org.hamster.weixinmp.constant.WxMenuBtnTypeEnum

  public JsonObject recursiveParse(WxMenuBtnEntity parentEntity) {
    JsonObject parent = new JsonObject();
    parent.addProperty("type", parentEntity.getType());
    parent.addProperty("name", parentEntity.getName());

    WxMenuBtnTypeEnum type = WxMenuBtnTypeEnum.valueOf(parentEntity
        .getType());
    switch (type) {
    case CLICK:
      parent.addProperty("key", parentEntity.getKey());
      break;
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.