Package org.hamster.weixinmp.constant

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

Related Classes of org.hamster.weixinmp.constant.WxMenuBtnTypeEnum

Copyright © 2018 www.massapicom. 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.