001package gudusoft.gsqlparser.lineage2.contract; 002 003/** 004 * Endpoint object kind (lineage2-contract.md ยง4.1). {@code CONSTANT} is 005 * used for constant nodes in transform graphs, never as an edge source 006 * endpoint (constant-only targets use {@code role: DERIVED} with a null 007 * source instead). 008 * 009 * <p>Internal API: not part of the public gsqlparser surface. 010 */ 011public enum ObjectKind { 012 TABLE, VIEW, TEMP_TABLE, GLOBAL_TEMP_TABLE, TABLE_VARIABLE, SCALAR_VARIABLE, 013 CURSOR, FUNCTION, PROCEDURE, CONSTANT, PARAMETER, SYNONYM, UNKNOWN 014}