// 
// Decompiled by Procyon v0.6.0
// 

package it.unimi.dsi.fastutil.chars;

import it.unimi.dsi.fastutil.objects.ObjectIterator;
import it.unimi.dsi.fastutil.objects.ObjectBidirectionalIterator;
import java.util.Comparator;
import java.util.Collection;
import java.util.Set;
import it.unimi.dsi.fastutil.objects.ObjectSet;
import it.unimi.dsi.fastutil.bytes.ByteCollection;
import java.util.Map;
import it.unimi.dsi.fastutil.objects.ObjectSortedSet;
import java.util.SortedMap;

public interface Char2ByteSortedMap extends Char2ByteMap, SortedMap<Character, Byte>
{
    Char2ByteSortedMap subMap(final char p0, final char p1);
    
    Char2ByteSortedMap headMap(final char p0);
    
    Char2ByteSortedMap tailMap(final char p0);
    
    char firstCharKey();
    
    char lastCharKey();
    
    @Deprecated
    default Char2ByteSortedMap subMap(final Character from, final Character to) {
        return this.subMap((char)from, (char)to);
    }
    
    @Deprecated
    default Char2ByteSortedMap headMap(final Character to) {
        return this.headMap((char)to);
    }
    
    @Deprecated
    default Char2ByteSortedMap tailMap(final Character from) {
        return this.tailMap((char)from);
    }
    
    @Deprecated
    default Character firstKey() {
        return this.firstCharKey();
    }
    
    @Deprecated
    default Character lastKey() {
        return this.lastCharKey();
    }
    
    @Deprecated
    default ObjectSortedSet<Map.Entry<Character, Byte>> entrySet() {
        return (ObjectSortedSet<Map.Entry<Character, Byte>>)this.char2ByteEntrySet();
    }
    
    ObjectSortedSet<Char2ByteMap.Entry> char2ByteEntrySet();
    
    CharSortedSet keySet();
    
    ByteCollection values();
    
    CharComparator comparator();
    
    public interface FastSortedEntrySet extends ObjectSortedSet<Char2ByteMap.Entry>, FastEntrySet
    {
        ObjectBidirectionalIterator<Char2ByteMap.Entry> fastIterator();
        
        ObjectBidirectionalIterator<Char2ByteMap.Entry> fastIterator(final Char2ByteMap.Entry p0);
    }
}
