Package AccessEngine :: Package AEConstants :: Module Parsing
[hide private]
[frames] | no frames]

Module Parsing

source code

Word parsing related constants.


Author: Peter Parente

Organization: IBM Corporation

Copyright: Copyright (c) 2005, 2007 IBM Corporation

License:

The BSD License

All rights reserved. This program and the accompanying materials are made available under the terms of the BSD license which accompanies this distribution, and is available at http://www.opensource.org/licenses/bsd-license.php

Variables [hide private]
integer WORD_NON_BLANK = 0
Definition indicating all non-blank characters should be considered the main part of a word
integer WORD_ALPHABETIC = 1
Definition indicating all letters should be considered the main part of a word
integer WORD_ALPHA_NUMERIC = 2
Definition indicating all letters and numbers should be considered the main part of a word
integer WORD_ALPHA_PUNCT = 3
Definition indicating all letters and punctuation should be considered the main part of a word
integer WORD_ALPHA_NUMERIC_PUNCT = 4
Definition indicating all letters, numbers, and punctuation should be considered the main part of a word
  WORD_LAST = 4
integer FORMAT_TEXT = 0
Words will be output without spelling
integer FORMAT_PRONOUNCE = 1
Punctuation will be pronounced
integer FORMAT_SPELL = 2
All characters in a word will be spelled
integer FORMAT_PHONETIC = 3
All characters in a word will be spelled using a phonetic spelling table
  FORMAT_LAST = 3