54 lines
847 B
Java
54 lines
847 B
Java
package com.sforce.soap.partner;
|
|
|
|
import java.util.EnumSet;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* This is a generated class for the SObject Enterprise API.
|
|
* Do not edit this file, as your changes will be lost.
|
|
*/
|
|
public enum Article {
|
|
|
|
|
|
|
|
/**
|
|
* Enumeration : None
|
|
*/
|
|
None("None"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Indefinite
|
|
*/
|
|
Indefinite("Indefinite"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Definite
|
|
*/
|
|
Definite("Definite"),
|
|
|
|
;
|
|
|
|
public static Map<String, String> valuesToEnums;
|
|
|
|
static {
|
|
valuesToEnums = new HashMap<String, String>();
|
|
for (Article e : EnumSet.allOf(Article.class)) {
|
|
valuesToEnums.put(e.toString(), e.name());
|
|
}
|
|
}
|
|
|
|
private String value;
|
|
|
|
private Article(String value) {
|
|
this.value = value;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return value;
|
|
}
|
|
}
|