forked from eclipse-vertx/vertx-sql-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMSSQLRow.java
More file actions
126 lines (113 loc) · 3.92 KB
/
Copy pathMSSQLRow.java
File metadata and controls
126 lines (113 loc) · 3.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
* Copyright (c) 2011-2026 Contributors to the Eclipse Foundation
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
* which is available at https://www.apache.org/licenses/LICENSE-2.0.
*
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
*/
package io.vertx.mssqlclient.impl;
import io.vertx.core.buffer.Buffer;
import io.vertx.core.json.JsonArray;
import io.vertx.core.json.JsonObject;
import io.vertx.sqlclient.impl.RowBase;
import io.vertx.sqlclient.internal.RowDescriptorBase;
import java.math.BigDecimal;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.time.OffsetDateTime;
import java.time.temporal.Temporal;
import java.util.UUID;
public class MSSQLRow extends RowBase {
public MSSQLRow(RowDescriptorBase rowDescriptor) {
super(rowDescriptor);
}
@Override
public <T> T get(Class<T> type, int position) {
if (type == Boolean.class) {
return type.cast(getBoolean(position));
} else if (type == Byte.class) {
return type.cast(getByte(position));
} else if (type == Short.class) {
return type.cast(getShort(position));
} else if (type == Integer.class) {
return type.cast(getInteger(position));
} else if (type == Long.class) {
return type.cast(getLong(position));
} else if (type == Float.class) {
return type.cast(getFloat(position));
} else if (type == Double.class) {
return type.cast(getDouble(position));
} else if (type == BigDecimal.class) {
return type.cast(getBigDecimal(position));
} else if (type == String.class) {
return type.cast(getString(position));
} else if (type == LocalDate.class) {
return type.cast(getLocalDate(position));
} else if (type == LocalTime.class) {
return type.cast(getLocalTime(position));
} else if (type == LocalDateTime.class) {
return type.cast(getLocalDateTime(position));
} else if (type == OffsetDateTime.class) {
return type.cast(getOffsetDateTime(position));
} else if (type == Buffer.class) {
return type.cast(getBuffer(position));
} else if (type == JsonObject.class) {
return type.cast(getJsonObject(position));
} else if (type == JsonArray.class) {
return type.cast(getJsonArray(position));
} else if (type == UUID.class) {
return type.cast(getValue(position));
} else if (type == Object.class) {
return type.cast(getValue(position));
} else if (type.isEnum()) {
return type.cast(getEnum(type, position));
} else {
throw new UnsupportedOperationException("Unsupported type " + type.getName());
}
}
@Override
public Temporal getTemporal(int pos) {
throw new UnsupportedOperationException();
}
@Override
public UUID getUUID(int pos) {
return get(UUID.class, pos);
}
@Override
public LocalDateTime[] getArrayOfLocalDateTimes(int pos) {
throw new UnsupportedOperationException();
}
@Override
public OffsetDateTime[] getArrayOfOffsetDateTimes(int pos) {
throw new UnsupportedOperationException();
}
@Override
public Buffer[] getArrayOfBuffers(String column) {
throw new UnsupportedOperationException();
}
@Override
public UUID[] getArrayOfUUIDs(String column) {
throw new UnsupportedOperationException();
}
private Object getEnum(Class enumType, int position) {
Object val = getValue(position);
if (val instanceof String) {
return Enum.valueOf(enumType, (String) val);
} else if (val instanceof Number) {
int ordinal = ((Number) val).intValue();
if (ordinal >= 0) {
Object[] constants = enumType.getEnumConstants();
if (ordinal < constants.length) {
return constants[ordinal];
}
}
} else if (val == null) {
return null;
}
throw new ClassCastException();
}
}