Package com.sforce.soap.metadata
Enum PromptElementRelativePosition
- java.lang.Object
-
- java.lang.Enum<PromptElementRelativePosition>
-
- com.sforce.soap.metadata.PromptElementRelativePosition
-
- All Implemented Interfaces:
Serializable,Comparable<PromptElementRelativePosition>
public enum PromptElementRelativePosition extends Enum<PromptElementRelativePosition>
This is a generated class for the SObject Enterprise API. Do not edit this file, as your changes will be lost.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BottomCenterEnumeration : BottomCenterBottomLeftEnumeration : BottomLeftBottomRightEnumeration : BottomRightLeftBottomEnumeration : LeftBottomLeftCenterEnumeration : LeftCenterLeftTopEnumeration : LeftTopRightBottomEnumeration : RightBottomRightCenterEnumeration : RightCenterRightTopEnumeration : RightTopTopCenterEnumeration : TopCenterTopLeftEnumeration : TopLeftTopRightEnumeration : TopRight
-
Field Summary
Fields Modifier and Type Field Description static Map<String,String>valuesToEnums
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static PromptElementRelativePositionvalueOf(String name)Returns the enum constant of this type with the specified name.static PromptElementRelativePosition[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TopLeft
public static final PromptElementRelativePosition TopLeft
Enumeration : TopLeft
-
TopCenter
public static final PromptElementRelativePosition TopCenter
Enumeration : TopCenter
-
TopRight
public static final PromptElementRelativePosition TopRight
Enumeration : TopRight
-
LeftTop
public static final PromptElementRelativePosition LeftTop
Enumeration : LeftTop
-
LeftCenter
public static final PromptElementRelativePosition LeftCenter
Enumeration : LeftCenter
-
LeftBottom
public static final PromptElementRelativePosition LeftBottom
Enumeration : LeftBottom
-
RightTop
public static final PromptElementRelativePosition RightTop
Enumeration : RightTop
-
RightCenter
public static final PromptElementRelativePosition RightCenter
Enumeration : RightCenter
-
RightBottom
public static final PromptElementRelativePosition RightBottom
Enumeration : RightBottom
-
BottomLeft
public static final PromptElementRelativePosition BottomLeft
Enumeration : BottomLeft
-
BottomCenter
public static final PromptElementRelativePosition BottomCenter
Enumeration : BottomCenter
-
BottomRight
public static final PromptElementRelativePosition BottomRight
Enumeration : BottomRight
-
-
Method Detail
-
values
public static PromptElementRelativePosition[] 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 (PromptElementRelativePosition c : PromptElementRelativePosition.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PromptElementRelativePosition 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<PromptElementRelativePosition>
-
-