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 valuesToEnums; static { valuesToEnums = new HashMap(); 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; } }