public static enum SocialShareUtils.ShareType extends java.lang.Enum<SocialShareUtils.ShareType>
| Enum Constant and Description |
|---|
DEFAULT
默认系统分享
|
WE_CHAT_CIRCLE
微信朋友圈分享
|
WE_CHAT_CONTACTS
微信联系人分享
|
| Modifier and Type | Method and Description |
|---|---|
static SocialShareUtils.ShareType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SocialShareUtils.ShareType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SocialShareUtils.ShareType DEFAULT
public static final SocialShareUtils.ShareType WE_CHAT_CONTACTS
public static final SocialShareUtils.ShareType WE_CHAT_CIRCLE
public static SocialShareUtils.ShareType[] values()
for (SocialShareUtils.ShareType c : SocialShareUtils.ShareType.values()) System.out.println(c);
public static SocialShareUtils.ShareType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null