value property

int get value

Implementation

int get value {
  switch (this) {
    case CompressKind.ZLIB:
      return 1;
    case CompressKind.NONE:
      return 0;
    case CompressKind.UNKNOWN:
      return 0xff;
  }
}