Skip to content

Commit 1ef3bb9

Browse files
author
Rúben André Barreiro
committed
Moment prefixes added
1 parent 0aa2883 commit 1ef3bb9

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
package org.quisl.framework.java.circuits.utils.common;
2+
3+
public enum MomentPrefixes {
4+
5+
CLASSICAL_MOMENT("Classical"),
6+
QUANTUM_MOMENT("Quantum");
7+
8+
private final String momentPrefix;
9+
10+
11+
MomentPrefixes(String momentPrefix) {
12+
13+
this.momentPrefix = momentPrefix;
14+
15+
}
16+
17+
public String getMomentPrefix() {
18+
19+
return this.momentPrefix;
20+
21+
}
22+
23+
}

0 commit comments

Comments
 (0)