001    /*
002    // $Id: //open/mondrian/src/main/mondrian/olap/MatchType.java#3 $
003    // This software is subject to the terms of the Common Public License
004    // Agreement, available at the following URL:
005    // http://www.opensource.org/licenses/cpl.html.
006    // Copyright (C) 2003-2006 Julian Hyde
007    // All Rights Reserved.
008    // You must accept the terms of that agreement to use this software.
009    //
010    // jhyde, Feb 21, 2003
011    */
012    package mondrian.olap;
013    
014    /**
015     * <code>MatchType</code> enumerates the allowable match modes when
016     * searching for a member based on its unique name.
017     *
018     * @author Zelaine Fong
019     * @version $Id: //open/mondrian/src/main/mondrian/olap/MatchType.java#3 $
020     */
021    public enum MatchType {
022        /** Match the unique name exactly */
023        EXACT,
024        /** If no exact match, return the preceding member */
025        BEFORE,
026        /** If no exact match, return the next member */
027        AFTER;
028    }
029    
030    // End MatchType.java