com.foxinmy.weixin4j.type.mch
Enum CorpPaymentCheckNameType

java.lang.Object
  extended by java.lang.Enum<CorpPaymentCheckNameType>
      extended by com.foxinmy.weixin4j.type.mch.CorpPaymentCheckNameType
All Implemented Interfaces:
Serializable, Comparable<CorpPaymentCheckNameType>

public enum CorpPaymentCheckNameType
extends Enum<CorpPaymentCheckNameType>

企业付款检查收款人姓名的策略

Since:
JDK 1.6
Author:
jinyu(foxinmy@gmail.com)
See Also:

Enum Constant Summary
FORCE_CHECK
          强校验真实姓名(未实名认证的用户会校验失败,无法转账)
NO_CHECK
          不校验真实姓名
OPTION_CHECK
          针对已实名认证的用户才校验真实姓名(未实名认证用户不校验,可以转账成功)
 
Method Summary
static CorpPaymentCheckNameType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CorpPaymentCheckNameType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NO_CHECK

public static final CorpPaymentCheckNameType NO_CHECK
不校验真实姓名


FORCE_CHECK

public static final CorpPaymentCheckNameType FORCE_CHECK
强校验真实姓名(未实名认证的用户会校验失败,无法转账)


OPTION_CHECK

public static final CorpPaymentCheckNameType OPTION_CHECK
针对已实名认证的用户才校验真实姓名(未实名认证用户不校验,可以转账成功)

Method Detail

values

public static CorpPaymentCheckNameType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (CorpPaymentCheckNameType c : CorpPaymentCheckNameType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static CorpPaymentCheckNameType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2014–2017. All rights reserved.