Package com.docusign.click.model
Enum UserAgreementResponseStyle.ScrollControlEnum
- java.lang.Object
-
- java.lang.Enum<UserAgreementResponseStyle.ScrollControlEnum>
-
- com.docusign.click.model.UserAgreementResponseStyle.ScrollControlEnum
-
- All Implemented Interfaces:
Serializable,Comparable<UserAgreementResponseStyle.ScrollControlEnum>
- Enclosing class:
- UserAgreementResponseStyle
public static enum UserAgreementResponseStyle.ScrollControlEnum extends Enum<UserAgreementResponseStyle.ScrollControlEnum>
Control the scrolling of the document either by browser or by a scrollbar in the clickwrap shell. Can only be applied if the clickwrap `format` is `inline`.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BROWSERFILL_PARENT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UserAgreementResponseStyle.ScrollControlEnumfromValue(String value)StringgetValue()StringtoString()static UserAgreementResponseStyle.ScrollControlEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static UserAgreementResponseStyle.ScrollControlEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BROWSER
public static final UserAgreementResponseStyle.ScrollControlEnum BROWSER
-
FILL_PARENT
public static final UserAgreementResponseStyle.ScrollControlEnum FILL_PARENT
-
-
Method Detail
-
values
public static UserAgreementResponseStyle.ScrollControlEnum[] 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 (UserAgreementResponseStyle.ScrollControlEnum c : UserAgreementResponseStyle.ScrollControlEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UserAgreementResponseStyle.ScrollControlEnum 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 nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<UserAgreementResponseStyle.ScrollControlEnum>
-
fromValue
public static UserAgreementResponseStyle.ScrollControlEnum fromValue(String value)
-
-