@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum SharePointVersion extends Enum<SharePointVersion>
| Enum Constant and Description |
|---|
SHAREPOINT_2013 |
SHAREPOINT_2016 |
SHAREPOINT_2019 |
SHAREPOINT_ONLINE |
| Modifier and Type | Method and Description |
|---|---|
static SharePointVersion |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static SharePointVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SharePointVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SharePointVersion SHAREPOINT_2013
public static final SharePointVersion SHAREPOINT_2016
public static final SharePointVersion SHAREPOINT_ONLINE
public static final SharePointVersion SHAREPOINT_2019
public static SharePointVersion[] values()
for (SharePointVersion c : SharePointVersion.values()) System.out.println(c);
public static SharePointVersion valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<SharePointVersion>public static SharePointVersion fromValue(String value)
value - real valueIllegalArgumentException - If the specified value does not map to one of the known values in this enum.