aboutsummaryrefslogtreecommitdiff
path: root/java/org/brotli/common/SharedDictionaryType.java
blob: b592d2b4aa43159c7a50d7290e73b8947381b423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Copyright 2018 Google Inc. All Rights Reserved.

   Distributed under MIT license.
   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
package org.brotli.common;

/** POJO enum that mirrors C BrotliSharedDictionaryType. */
public class SharedDictionaryType {
  // Disallow instantiation.
  private SharedDictionaryType() {}

  public static final int RAW = 0;
  public static final int SERIALIZED = 1;
}