datai/docs/reference-code/com/sforce/soap/tooling/DataImportRefreshFrequency.java

114 lines
1.6 KiB
Java

package com.sforce.soap.tooling;
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 DataImportRefreshFrequency {
/**
* Enumeration : NONE
*/
NONE("NONE"),
/**
* Enumeration : MINUTES_5
*/
MINUTES_5("MINUTES_5"),
/**
* Enumeration : MINUTES_15
*/
MINUTES_15("MINUTES_15"),
/**
* Enumeration : MINUTES_30
*/
MINUTES_30("MINUTES_30"),
/**
* Enumeration : HOURLY
*/
HOURLY("HOURLY"),
/**
* Enumeration : EVERY_4_HOURS
*/
EVERY_4_HOURS("EVERY_4_HOURS"),
/**
* Enumeration : EVERY_12_HOURS
*/
EVERY_12_HOURS("EVERY_12_HOURS"),
/**
* Enumeration : DAILY
*/
DAILY("DAILY"),
/**
* Enumeration : WEEKLY
*/
WEEKLY("WEEKLY"),
/**
* Enumeration : MONTHLY
*/
MONTHLY("MONTHLY"),
/**
* Enumeration : NOT_APPLICABLE
*/
NOT_APPLICABLE("NOT_APPLICABLE"),
/**
* Enumeration : BATCH
*/
BATCH("BATCH"),
/**
* Enumeration : STREAMING
*/
STREAMING("STREAMING"),
;
public static Map<String, String> valuesToEnums;
static {
valuesToEnums = new HashMap<String, String>();
for (DataImportRefreshFrequency e : EnumSet.allOf(DataImportRefreshFrequency.class)) {
valuesToEnums.put(e.toString(), e.name());
}
}
private String value;
private DataImportRefreshFrequency(String value) {
this.value = value;
}
@Override
public String toString() {
return value;
}
}