Skip to content

Commit 2ff9961

Browse files
committed
feat: generate a status to oracle query
Signed-off-by: Otavio Santana <[email protected]>
1 parent 7716e2c commit 2ff9961

File tree

2 files changed

+31
-4
lines changed

2 files changed

+31
-4
lines changed

jnosql-oracle-nosql/src/test/java/org/eclipse/jnosql/databases/oracle/communication/Currency.java

Lines changed: 0 additions & 4 deletions
This file was deleted.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/*
2+
* Copyright (c) 2025 Contributors to the Eclipse Foundation
3+
* All rights reserved. This program and the accompanying materials
4+
* are made available under the terms of the Eclipse Public License v1.0
5+
* and Apache License v2.0 which accompanies this distribution.
6+
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
7+
* and the Apache License v2.0 is available at http://www.opensource.org/licenses/apache2.0.php.
8+
*
9+
* You may elect to redistribute this code under either of these licenses.
10+
*
11+
* Contributors:
12+
*
13+
* Otavio Santana
14+
*/
15+
package org.eclipse.jnosql.databases.oracle.communication;
16+
17+
public enum MaritalStatus {
18+
SINGLE,
19+
MARRIED,
20+
DIVORCED,
21+
WIDOWED,
22+
SEPARATED,
23+
COHABITATING,
24+
DOMESTIC_PARTNER,
25+
ENGAGED,
26+
IN_A_RELATIONSHIP,
27+
COMPLICATED,
28+
OPEN_RELATIONSHIP,
29+
POLYAMOROUS,
30+
OTHER
31+
}

0 commit comments

Comments
 (0)