what-the-bank/sources/org/beyka/tiffbitmapfactory/ResolutionUnit.java

15 lines
231 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.beyka.tiffbitmapfactory;
/* loaded from: classes6.dex */
public enum ResolutionUnit {
NONE(1),
INCH(2),
CENTIMETER(3);
final int ordinal;
ResolutionUnit(int i) {
this.ordinal = i;
}
}