com.alipay.api.msg.MsgStatusEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
/**
* Alipay.com Inc. Copyright (c) 2004-2018 All Rights Reserved.
*/
package com.alipay.api.msg;
/**
* @author liuqun.lq
* @version $Id: MsgStatusEnum.java, v 0.1 2018年11月13日 18:07 liuqun.lq Exp $
*/
public enum MsgStatusEnum {
SUCCESS,
FAIL;
public static MsgStatusEnum fromStr(String status) {
if ("SUCCESS".equals(status)) {
return SUCCESS;
}
return FAIL;
}
}