mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
11 lines
166 B
Java
11 lines
166 B
Java
// "Remove '{}'" "true-preview"
|
|
|
|
enum Planet {
|
|
MERCURY<caret>(3.303e+23);
|
|
|
|
final double mass; // in kilograms
|
|
|
|
Planet(double mass) {
|
|
this.mass = mass;
|
|
}
|
|
} |