001/*
002 * This file is part of McIDAS-V
003 *
004 * Copyright 2007-2023
005 * Space Science and Engineering Center (SSEC)
006 * University of Wisconsin - Madison
007 * 1225 W. Dayton Street, Madison, WI 53706, USA
008 * https://www.ssec.wisc.edu/mcidas
009 * 
010 * All Rights Reserved
011 * 
012 * McIDAS-V is built on Unidata's IDV and SSEC's VisAD libraries, and
013 * some McIDAS-V source code is based on IDV and VisAD source code.  
014 * 
015 * McIDAS-V is free software; you can redistribute it and/or modify
016 * it under the terms of the GNU Lesser Public License as published by
017 * the Free Software Foundation; either version 3 of the License, or
018 * (at your option) any later version.
019 * 
020 * McIDAS-V is distributed in the hope that it will be useful,
021 * but WITHOUT ANY WARRANTY; without even the implied warranty of
022 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
023 * GNU Lesser Public License for more details.
024 * 
025 * You should have received a copy of the GNU Lesser Public License
026 * along with this program.  If not, see http://www.gnu.org/licenses.
027 */
028package edu.wisc.ssec.mcidasv.util.trie;
029
030import java.util.List;
031
032import edu.wisc.ssec.mcidasv.util.trie.PatriciaTrie.KeyAnalyzer;
033
034
035public class StringListKeyAnalyzer implements KeyAnalyzer<List<String>> {
036
037    @Override public int bitIndex(List<String> key, int keyStart, int keyLength, List<String> found, int foundStart, int foundLength) {
038        // TODO Auto-generated method stub
039        return 0;
040    }
041
042    @Override public int bitsPerElement() {
043        // TODO Auto-generated method stub
044        return 1;
045    }
046
047    @Override public boolean isBitSet(List<String> key, int keyLength, int bitIndex) {
048        // TODO Auto-generated method stub
049        return false;
050    }
051
052    @Override public boolean isPrefix(List<String> prefix, int offset, int length, List<String> key) {
053        // TODO Auto-generated method stub
054        return false;
055    }
056
057    @Override
058    public int length(List<String> key) {
059        // TODO Auto-generated method stub
060        return 0;
061    }
062
063    @Override public int compare(List<String> o1, List<String> o2) {
064        // TODO Auto-generated method stub
065        return 0;
066    }
067
068}