package common;

/* JADX INFO: loaded from: classes.dex */
public class LengthUnit extends BaseUnit {
    private static int count;
    public static LengthUnit POINTS = new LengthUnit();
    public static LengthUnit METRES = new LengthUnit();
    public static LengthUnit CENTIMETRES = new LengthUnit();
    public static LengthUnit INCHES = new LengthUnit();

    /* JADX WARN: Illegal instructions before constructor call */
    private LengthUnit() {
        int i2 = count;
        count = i2 + 1;
        super(i2);
    }

    public static int getCount() {
        return count;
    }
}
