Конвертер величин.
- Информации
- Массы
- Времени
InformationQuantity information = new InformationQuantity(1, InformationMeasure.BYTE);
information.getQuantity();
Результат выполнения:
1
InformationQuantity information = new InformationQuantity(1, InformationMeasure.BYTE);
information.getMeasure();
Результат выполнения:
BYTE
InformationQuantity information = new InformationQuantity(1, InformationMeasure.BYTE);
information.compareTo(new InformationQuantity(1, InformationMeasure.BIT))
Результат выполнения:
1
InformationQuantity information = new InformationQuantity(1, InformationMeasure.BYTE);
information.convert(InformationMeasure.BIT);
Результат выполнения:
8
InformationQuantity.compare(
new InformationQuantity(1, InformationMeasure.BYTE),
new InformationQuantity(1, InformationMeasure.BIT)
);
Результат выполнения:
1
MassQuantity mass = new MassQuantity(1, MassMeasure.KILOGRAM);
mass.getQuantity();
Результат выполнения:
1
MassQuantity mass = new MassQuantity(1, MassMeasure.KILOGRAM);
mass.getMeasure();
Результат выполнения:
KILOGRAM
MassQuantity mass = new MassQuantity(1, MassMeasure.KILOGRAM);
mass.compareTo(new MassQuantity(1, MassMeasure.GRAM))
Результат выполнения:
1
MassQuantity mass = new MassQuantity(1, MassMeasure.KILOGRAM);
mass.convert(MassMeasure.GRAM);
Результат выполнения:
1000
MassQuantity.compare(
new MassQuantity(1, MassMeasure.KILOGRAM),
new MassQuantity(1, MassMeasure.GRAM)
);
Результат выполнения:
1
TimeQuantity time = new TimeQuantity(1, TimeMeasure.KILOSECOND);
time.getQuantity();
Результат выполнения:
1
TimeQuantity time = new TimeQuantity(1, TimeMeasure.KILOSECOND);
time.getMeasure();
Результат выполнения:
KILOSECOND
TimeQuantity time = new TimeQuantity(1, TimeMeasure.KILOSECOND);
time.compareTo(new TimeQuantity(1, TimeMeasure.SECOND))
Результат выполнения:
1
TimeQuantity time = new TimeQuantity(1, TimeMeasure.KILOSECOND);
time.convert(TimeMeasure.SECOND);
Результат выполнения:
1000
TimeQuantity.compare(
new TimeQuantity(1, TimeMeasure.KILOSECOND),
new TimeQuantity(1, TimeMeasure.SECOND)
);
Результат выполнения:
1