• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright 2018 Google Inc. All Rights Reserved.
2 
3    Distributed under MIT license.
4    See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
5 */
6 
7 package org.brotli.enc;
8 
9 import java.nio.ByteBuffer;
10 
11 /**
12  * Prepared dictionary data provider.
13  */
14 public interface PreparedDictionary {
getData()15   ByteBuffer getData();
16 }
17