StringType.java revision 1088:7e62d98d4625
1139804Simp/*
21541Srgrimes * Permission is hereby granted, free of charge, to any person obtaining a copy of
3152376Srwatson * this software and associated documentation files (the "Software"), to deal in
4152376Srwatson * the Software without restriction, including without limitation the rights to
5152376Srwatson * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
61541Srgrimes * of the Software, and to permit persons to whom the Software is furnished to do
71541Srgrimes * so, subject to the following conditions:
81541Srgrimes *
91541Srgrimes * The above copyright notice and this permission notice shall be included in all
101541Srgrimes * copies or substantial portions of the Software.
111541Srgrimes *
121541Srgrimes * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
131541Srgrimes * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
141541Srgrimes * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
151541Srgrimes * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
161541Srgrimes * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
171541Srgrimes * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
181541Srgrimes * SOFTWARE.
191541Srgrimes */
201541Srgrimespackage jdk.nashorn.internal.runtime.regexp.joni.constants;
211541Srgrimes
221541Srgrimes@SuppressWarnings("javadoc")
231541Srgrimespublic interface StringType {
241541Srgrimes    final int NSTR_RAW               = 1<<0;
251541Srgrimes    final int NSTR_AMBIG             = 1<<1;
261541Srgrimes    final int NSTR_DONT_GET_OPT_INFO = 1<<2;
271541Srgrimes    final int NSTR_SHARED            = 1<<3;
281541Srgrimes}
291541Srgrimes