Package com.sforce.soap.metadata
Enum CaseType
- java.lang.Object
-
- java.lang.Enum<CaseType>
-
- com.sforce.soap.metadata.CaseType
-
- All Implemented Interfaces:
Serializable,Comparable<CaseType>
public enum CaseType extends Enum<CaseType>
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 AbessiveEnumeration : AbessiveAblativeEnumeration : AblativeAccusativeEnumeration : AccusativeAdessiveEnumeration : AdessiveAdverbialEnumeration : AdverbialAllativeEnumeration : AllativeCausalfinalEnumeration : CausalfinalComitativeEnumeration : ComitativeDativeEnumeration : DativeDelativeEnumeration : DelativeDistributiveEnumeration : DistributiveElativeEnumeration : ElativeErgativeEnumeration : ErgativeEssiveEnumeration : EssiveEssiveformalEnumeration : EssiveformalGenitiveEnumeration : GenitiveIllativeEnumeration : IllativeInessiveEnumeration : InessiveInstrumentalEnumeration : InstrumentalLocativeEnumeration : LocativeNominativeEnumeration : NominativeObjectiveEnumeration : ObjectivePartitiveEnumeration : PartitivePrepositionalEnumeration : PrepositionalSubjectiveEnumeration : SubjectiveSublativeEnumeration : SublativeSuperessiveEnumeration : SuperessiveTermanativeEnumeration : TermanativeTranslativeEnumeration : TranslativeVocativeEnumeration : Vocative
-
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 CaseTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CaseType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Nominative
public static final CaseType Nominative
Enumeration : Nominative
-
Accusative
public static final CaseType Accusative
Enumeration : Accusative
-
Genitive
public static final CaseType Genitive
Enumeration : Genitive
-
Dative
public static final CaseType Dative
Enumeration : Dative
-
Inessive
public static final CaseType Inessive
Enumeration : Inessive
-
Elative
public static final CaseType Elative
Enumeration : Elative
-
Illative
public static final CaseType Illative
Enumeration : Illative
-
Adessive
public static final CaseType Adessive
Enumeration : Adessive
-
Ablative
public static final CaseType Ablative
Enumeration : Ablative
-
Allative
public static final CaseType Allative
Enumeration : Allative
-
Essive
public static final CaseType Essive
Enumeration : Essive
-
Translative
public static final CaseType Translative
Enumeration : Translative
-
Partitive
public static final CaseType Partitive
Enumeration : Partitive
-
Objective
public static final CaseType Objective
Enumeration : Objective
-
Subjective
public static final CaseType Subjective
Enumeration : Subjective
-
Instrumental
public static final CaseType Instrumental
Enumeration : Instrumental
-
Prepositional
public static final CaseType Prepositional
Enumeration : Prepositional
-
Locative
public static final CaseType Locative
Enumeration : Locative
-
Vocative
public static final CaseType Vocative
Enumeration : Vocative
-
Sublative
public static final CaseType Sublative
Enumeration : Sublative
-
Superessive
public static final CaseType Superessive
Enumeration : Superessive
-
Delative
public static final CaseType Delative
Enumeration : Delative
-
Causalfinal
public static final CaseType Causalfinal
Enumeration : Causalfinal
-
Essiveformal
public static final CaseType Essiveformal
Enumeration : Essiveformal
-
Termanative
public static final CaseType Termanative
Enumeration : Termanative
-
Distributive
public static final CaseType Distributive
Enumeration : Distributive
-
Ergative
public static final CaseType Ergative
Enumeration : Ergative
-
Adverbial
public static final CaseType Adverbial
Enumeration : Adverbial
-
Abessive
public static final CaseType Abessive
Enumeration : Abessive
-
Comitative
public static final CaseType Comitative
Enumeration : Comitative
-
-
Method Detail
-
values
public static CaseType[] 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 (CaseType c : CaseType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CaseType 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
-
-