com.crystaldecisions.sdk.occa.infostore
Class IInfoObject.LocaleOption

java.lang.Object
  extended by java.lang.Enum
      extended by com.crystaldecisions.sdk.occa.infostore.IInfoObject.LocaleOption
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable
Enclosing interface:
IInfoObject

public static final class IInfoObject.LocaleOption
extends java.lang.Enum

The LocaleOption indicates whether you want default, fallback, or create if not exist behaviour when you call getFiles

See Also:
Serialized Form

Field Summary
static IInfoObject.LocaleOption CREATE_IF_NOT_EXIST
           If the locale doesn't exist in SI_FILES, it will create one.
static IInfoObject.LocaleOption DEFAULT
           If the locale doesn't exist in SI_FILES, it will always return null
static IInfoObject.LocaleOption FALLBACK
           If the locale doesn't exist in SI_FILES, it will try to do locale fallback.
 
Method Summary
static IInfoObject.LocaleOption valueOf(java.lang.String name)
           
static IInfoObject.LocaleOption[] values()
           
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

DEFAULT

public static final IInfoObject.LocaleOption DEFAULT

If the locale doesn't exist in SI_FILES, it will always return null


FALLBACK

public static final IInfoObject.LocaleOption FALLBACK

If the locale doesn't exist in SI_FILES, it will try to do locale fallback. If there is no fallback locale, null is returned


CREATE_IF_NOT_EXIST

public static final IInfoObject.LocaleOption CREATE_IF_NOT_EXIST

If the locale doesn't exist in SI_FILES, it will create one. Fallback is not performed.

Method Detail

values

public static IInfoObject.LocaleOption[] values()

valueOf

public static IInfoObject.LocaleOption valueOf(java.lang.String name)