public enum DynamicSqlTrustMode extends Enum<DynamicSqlTrustMode>
LEGACY preserves the historical behavior byte-for-byte.
SHADOW also preserves the published model, but exposes which
relationships came from an incomplete materialization so callers can measure
the affected surface. Neither mode filters output. A filtered mode must not be
added until per-edge commitment and staged publication are implemented; a
whole-site gate would delete independently provable lineage.
| Modifier and Type | Method and Description |
|---|---|
static DynamicSqlTrustMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DynamicSqlTrustMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DynamicSqlTrustMode LEGACY
public static final DynamicSqlTrustMode SHADOW
public static DynamicSqlTrustMode[] values()
for (DynamicSqlTrustMode c : DynamicSqlTrustMode.values()) System.out.println(c);
public static DynamicSqlTrustMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null