Package unit.java.sdk.model
Enum CreateOfficer.TitleEnum
- java.lang.Object
-
- java.lang.Enum<CreateOfficer.TitleEnum>
-
- unit.java.sdk.model.CreateOfficer.TitleEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CreateOfficer.TitleEnum>
- Enclosing class:
- CreateOfficer
public static enum CreateOfficer.TitleEnum extends java.lang.Enum<CreateOfficer.TitleEnum>
Gets or Sets title
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CreateOfficer.TitleEnumfromValue(java.lang.String value)java.lang.StringgetValue()java.lang.StringtoString()static CreateOfficer.TitleEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CreateOfficer.TitleEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PRESIDENT
public static final CreateOfficer.TitleEnum PRESIDENT
-
CEO
public static final CreateOfficer.TitleEnum CEO
-
COO
public static final CreateOfficer.TitleEnum COO
-
CFO
public static final CreateOfficer.TitleEnum CFO
-
BENEFITS_ADMINISTRATION_OFFICER
public static final CreateOfficer.TitleEnum BENEFITS_ADMINISTRATION_OFFICER
-
CIO
public static final CreateOfficer.TitleEnum CIO
-
VP
public static final CreateOfficer.TitleEnum VP
-
AVP
public static final CreateOfficer.TitleEnum AVP
-
TREASURER
public static final CreateOfficer.TitleEnum TREASURER
-
SECRETARY
public static final CreateOfficer.TitleEnum SECRETARY
-
CONTROLLER
public static final CreateOfficer.TitleEnum CONTROLLER
-
MANAGER
public static final CreateOfficer.TitleEnum MANAGER
-
PARTNER
public static final CreateOfficer.TitleEnum PARTNER
-
MEMBER
public static final CreateOfficer.TitleEnum MEMBER
-
-
Method Detail
-
values
public static CreateOfficer.TitleEnum[] 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 (CreateOfficer.TitleEnum c : CreateOfficer.TitleEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CreateOfficer.TitleEnum valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<CreateOfficer.TitleEnum>
-
fromValue
public static CreateOfficer.TitleEnum fromValue(java.lang.String value)
-
-