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 package org.brotli.common; 7 8 /** POJO enum that mirrors C BrotliSharedDictionaryType. */ 9 public class SharedDictionaryType { 10 // Disallow instantiation. SharedDictionaryType()11 private SharedDictionaryType() {} 12 13 public static final int RAW = 0; 14 public static final int SERIALIZED = 1; 15 } 16