Enum Class M365GraphFetcherConfig.SourceDeltaExpansion
java.lang.Object
java.lang.Enum<M365GraphFetcherConfig.SourceDeltaExpansion>
com.norconex.crawler.fs.fetch.impl.m365graph.M365GraphFetcherConfig.SourceDeltaExpansion
- All Implemented Interfaces:
Serializable,Comparable<M365GraphFetcherConfig.SourceDeltaExpansion>,Constable
- Enclosing class:
M365GraphFetcherConfig
public static enum M365GraphFetcherConfig.SourceDeltaExpansion
extends Enum<M365GraphFetcherConfig.SourceDeltaExpansion>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionExpand broader start references such as site, site URL, or user into child drives and maintain one delta cursor per drive.Keep the start reference itself as the source-delta root. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SELF_ONLY
Keep the start reference itself as the source-delta root. For M365 this is only valid on drive references. -
INCLUDE_CHILD_DRIVES
Expand broader start references such as site, site URL, or user into child drives and maintain one delta cursor per drive.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-