@@ -163,41 +163,34 @@ public class FunctionTable {
163163 }
164164
165165 static {
166- m_functionID .put (Keywords .FUNC_CURRENT_STRING , Integer .valueOf (FunctionTable .FUNC_CURRENT ));
167- m_functionID .put (Keywords .FUNC_LAST_STRING , Integer .valueOf (FunctionTable .FUNC_LAST ));
168- m_functionID .put (Keywords .FUNC_POSITION_STRING , Integer .valueOf (FunctionTable .FUNC_POSITION ));
169- m_functionID .put (Keywords .FUNC_COUNT_STRING , Integer .valueOf (FunctionTable .FUNC_COUNT ));
170- m_functionID .put (Keywords .FUNC_ID_STRING , Integer .valueOf (FunctionTable .FUNC_ID ));
171- m_functionID .put (
172- Keywords .FUNC_LOCAL_PART_STRING , Integer .valueOf (FunctionTable .FUNC_LOCAL_PART ));
173- m_functionID .put (Keywords .FUNC_NAMESPACE_STRING , Integer .valueOf (FunctionTable .FUNC_NAMESPACE ));
174- m_functionID .put (Keywords .FUNC_NAME_STRING , Integer .valueOf (FunctionTable .FUNC_QNAME ));
175- m_functionID .put (Keywords .FUNC_NOT_STRING , Integer .valueOf (FunctionTable .FUNC_NOT ));
176- m_functionID .put (Keywords .FUNC_TRUE_STRING , Integer .valueOf (FunctionTable .FUNC_TRUE ));
177- m_functionID .put (Keywords .FUNC_FALSE_STRING , Integer .valueOf (FunctionTable .FUNC_FALSE ));
178- m_functionID .put (Keywords .FUNC_BOOLEAN_STRING , Integer .valueOf (FunctionTable .FUNC_BOOLEAN ));
179- m_functionID .put (Keywords .FUNC_LANG_STRING , Integer .valueOf (FunctionTable .FUNC_LANG ));
180- m_functionID .put (Keywords .FUNC_NUMBER_STRING , Integer .valueOf (FunctionTable .FUNC_NUMBER ));
181- m_functionID .put (Keywords .FUNC_FLOOR_STRING , Integer .valueOf (FunctionTable .FUNC_FLOOR ));
182- m_functionID .put (Keywords .FUNC_CEILING_STRING , Integer .valueOf (FunctionTable .FUNC_CEILING ));
183- m_functionID .put (Keywords .FUNC_ROUND_STRING , Integer .valueOf (FunctionTable .FUNC_ROUND ));
184- m_functionID .put (Keywords .FUNC_SUM_STRING , Integer .valueOf (FunctionTable .FUNC_SUM ));
185- m_functionID .put (Keywords .FUNC_STRING_STRING , Integer .valueOf (FunctionTable .FUNC_STRING ));
186- m_functionID .put (
187- Keywords .FUNC_STARTS_WITH_STRING , Integer .valueOf (FunctionTable .FUNC_STARTS_WITH ));
188- m_functionID .put (Keywords .FUNC_CONTAINS_STRING , Integer .valueOf (FunctionTable .FUNC_CONTAINS ));
189- m_functionID .put (
190- Keywords .FUNC_SUBSTRING_BEFORE_STRING ,
191- Integer .valueOf (FunctionTable .FUNC_SUBSTRING_BEFORE ));
192- m_functionID .put (
193- Keywords .FUNC_SUBSTRING_AFTER_STRING , Integer .valueOf (FunctionTable .FUNC_SUBSTRING_AFTER ));
194- m_functionID .put (
195- Keywords .FUNC_NORMALIZE_SPACE_STRING , Integer .valueOf (FunctionTable .FUNC_NORMALIZE_SPACE ));
196- m_functionID .put (Keywords .FUNC_TRANSLATE_STRING , Integer .valueOf (FunctionTable .FUNC_TRANSLATE ));
197- m_functionID .put (Keywords .FUNC_CONCAT_STRING , Integer .valueOf (FunctionTable .FUNC_CONCAT ));
198- m_functionID .put (Keywords .FUNC_SUBSTRING_STRING , Integer .valueOf (FunctionTable .FUNC_SUBSTRING ));
199- m_functionID .put (
200- Keywords .FUNC_STRING_LENGTH_STRING , Integer .valueOf (FunctionTable .FUNC_STRING_LENGTH ));
166+ m_functionID .put (Keywords .FUNC_CURRENT_STRING , FunctionTable .FUNC_CURRENT );
167+ m_functionID .put (Keywords .FUNC_LAST_STRING , FunctionTable .FUNC_LAST );
168+ m_functionID .put (Keywords .FUNC_POSITION_STRING , FunctionTable .FUNC_POSITION );
169+ m_functionID .put (Keywords .FUNC_COUNT_STRING , FunctionTable .FUNC_COUNT );
170+ m_functionID .put (Keywords .FUNC_ID_STRING , FunctionTable .FUNC_ID );
171+ m_functionID .put (Keywords .FUNC_LOCAL_PART_STRING , FunctionTable .FUNC_LOCAL_PART );
172+ m_functionID .put (Keywords .FUNC_NAMESPACE_STRING , FunctionTable .FUNC_NAMESPACE );
173+ m_functionID .put (Keywords .FUNC_NAME_STRING , FunctionTable .FUNC_QNAME );
174+ m_functionID .put (Keywords .FUNC_NOT_STRING , FunctionTable .FUNC_NOT );
175+ m_functionID .put (Keywords .FUNC_TRUE_STRING , FunctionTable .FUNC_TRUE );
176+ m_functionID .put (Keywords .FUNC_FALSE_STRING , FunctionTable .FUNC_FALSE );
177+ m_functionID .put (Keywords .FUNC_BOOLEAN_STRING , FunctionTable .FUNC_BOOLEAN );
178+ m_functionID .put (Keywords .FUNC_LANG_STRING , FunctionTable .FUNC_LANG );
179+ m_functionID .put (Keywords .FUNC_NUMBER_STRING , FunctionTable .FUNC_NUMBER );
180+ m_functionID .put (Keywords .FUNC_FLOOR_STRING , FunctionTable .FUNC_FLOOR );
181+ m_functionID .put (Keywords .FUNC_CEILING_STRING , FunctionTable .FUNC_CEILING );
182+ m_functionID .put (Keywords .FUNC_ROUND_STRING , FunctionTable .FUNC_ROUND );
183+ m_functionID .put (Keywords .FUNC_SUM_STRING , FunctionTable .FUNC_SUM );
184+ m_functionID .put (Keywords .FUNC_STRING_STRING , FunctionTable .FUNC_STRING );
185+ m_functionID .put (Keywords .FUNC_STARTS_WITH_STRING , FunctionTable .FUNC_STARTS_WITH );
186+ m_functionID .put (Keywords .FUNC_CONTAINS_STRING , FunctionTable .FUNC_CONTAINS );
187+ m_functionID .put (Keywords .FUNC_SUBSTRING_BEFORE_STRING , FunctionTable .FUNC_SUBSTRING_BEFORE );
188+ m_functionID .put (Keywords .FUNC_SUBSTRING_AFTER_STRING , FunctionTable .FUNC_SUBSTRING_AFTER );
189+ m_functionID .put (Keywords .FUNC_NORMALIZE_SPACE_STRING , FunctionTable .FUNC_NORMALIZE_SPACE );
190+ m_functionID .put (Keywords .FUNC_TRANSLATE_STRING , FunctionTable .FUNC_TRANSLATE );
191+ m_functionID .put (Keywords .FUNC_CONCAT_STRING , FunctionTable .FUNC_CONCAT );
192+ m_functionID .put (Keywords .FUNC_SUBSTRING_STRING , FunctionTable .FUNC_SUBSTRING );
193+ m_functionID .put (Keywords .FUNC_STRING_LENGTH_STRING , FunctionTable .FUNC_STRING_LENGTH );
201194 }
202195
203196 public FunctionTable () {
0 commit comments