Skip to content

Conversation

@GoodforGod
Copy link
Contributor

@GoodforGod GoodforGod commented Oct 24, 2024

Enum Column Mapping for databases

    public enum SomeEnum implements EnumColumnIntMapping {

        ONE(1),
        TWO(2);

        private final int value;

        SomeEnum(int value) {
            this.value = value;
        }

        public int valueAsInt() {
            return value;
        }
    }

@GoodforGod GoodforGod added improvement Improvements to existing features module: database Related to Databases module labels Oct 24, 2024
@github-actions
Copy link

github-actions bot commented Oct 24, 2024

Test Results

10 tests   10 ✅  0s ⏱️
 2 suites   0 💤
 2 files     0 ❌

Results for commit 81c501a.

♻️ This comment has been updated with latest results.

@github-actions
Copy link

github-actions bot commented Oct 24, 2024

Test Results

607 tests   603 ✅  8m 6s ⏱️
 85 suites    4 💤
 85 files      0 ❌

Results for commit 81c501a.

♻️ This comment has been updated with latest results.

@GoodforGod GoodforGod added new feature New feature request and removed improvement Improvements to existing features labels Nov 12, 2024
@GoodforGod GoodforGod changed the title Enum databases mappings [Draft] Enum databases mappings Jan 18, 2025
@GoodforGod GoodforGod marked this pull request as draft March 5, 2025 20:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

module: database Related to Databases module new feature New feature request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant