001package gudusoft.gsqlparser.lineage2.contract; 002 003/** 004 * Endpoint resolution status against the supplied catalog snapshot 005 * (lineage2-contract.md ยง4.1, D-02). Precedence when multiple conditions 006 * hold (highest wins): {@code PARSER_UNSUPPORTED > AMBIGUOUS > 007 * UNRESOLVED_SOURCE/UNRESOLVED_TARGET > PARTIAL > GUESSED > RESOLVED}. 008 * 009 * <p>Internal API: not part of the public gsqlparser surface. 010 */ 011public enum ResolutionStatus { 012 RESOLVED, PARTIAL, UNRESOLVED_SOURCE, UNRESOLVED_TARGET, AMBIGUOUS, 013 PARSER_UNSUPPORTED, GUESSED 014}