@@ -13,7 +13,7 @@ public class CastObjectArrayToPrimitive {
1313 *
1414 * @return Boolean[] returns the cast Boolean Array
1515 *
16- * @since 1.0 .0
16+ * @since 0.1 .0
1717 */
1818 public static Boolean [] castToBoolean (String [] propertyValue ) {
1919 Boolean [] obj2 = new Boolean [propertyValue .length ];
@@ -29,7 +29,7 @@ public static Boolean[] castToBoolean(String[] propertyValue) {
2929 *
3030 * @return Byte[] returns the cast Byte Array
3131 *
32- * @since 1.0 .0
32+ * @since 0.1 .0
3333 */
3434 public static Byte [] castToByte (String [] propertyValue ) {
3535 Byte [] obj2 = new Byte [propertyValue .length ];
@@ -45,7 +45,7 @@ public static Byte[] castToByte(String[] propertyValue) {
4545 *
4646 * @return Short[] returns the cast Short Array
4747 *
48- * @since 1.0 .0
48+ * @since 0.1 .0
4949 */
5050 public static Short [] castToShort (String [] propertyValue ) {
5151 Short [] obj2 = new Short [propertyValue .length ];
@@ -61,7 +61,7 @@ public static Short[] castToShort(String[] propertyValue) {
6161 *
6262 * @return Integer[] returns the cast Integer Array
6363 *
64- * @since 1.0 .0
64+ * @since 0.1 .0
6565 */
6666 public static Integer [] castToInteger (String [] propertyValue ) {
6767 Integer [] obj2 = new Integer [propertyValue .length ];
@@ -77,7 +77,7 @@ public static Integer[] castToInteger(String[] propertyValue) {
7777 *
7878 * @return Long[] returns the cast Long Array
7979 *
80- * @since 1.0 .0
80+ * @since 0.1 .0
8181 */
8282 public static Long [] castToLong (String [] propertyValue ) {
8383 Long [] obj2 = new Long [propertyValue .length ];
@@ -93,7 +93,7 @@ public static Long[] castToLong(String[] propertyValue) {
9393 *
9494 * @return Float[] returns the cast Float Array
9595 *
96- * @since 1.0 .0
96+ * @since 0.1 .0
9797 */
9898 public static Float [] castToFloat (String [] propertyValue ) {
9999 Float [] obj2 = new Float [propertyValue .length ];
@@ -109,7 +109,7 @@ public static Float[] castToFloat(String[] propertyValue) {
109109 *
110110 * @return Double[] returns the cast Double Array
111111 *
112- * @since 1.0 .0
112+ * @since 0.1 .0
113113 */
114114 public static Double [] castToDouble (String [] propertyValue ) {
115115 Double [] obj2 = new Double [propertyValue .length ];
@@ -125,7 +125,7 @@ public static Double[] castToDouble(String[] propertyValue) {
125125 *
126126 * @return Character[] returns the cast Character Array
127127 *
128- * @since 1.0 .0
128+ * @since 0.1 .0
129129 */
130130 public static Character [] castToCharacter (String [] propertyValue ) {
131131 Character [] obj2 = new Character [propertyValue .length ];
@@ -145,7 +145,7 @@ public static Character[] castToCharacter(String[] propertyValue) {
145145 * @param node
146146 * Neo4J node
147147 *
148- * @since 1.0 .0
148+ * @since 0.1 .0
149149 */
150150 public static Node castToNeo4JPropertyType (String propertyName , String [] propertyValue , String propertyType ,
151151 Node node ) {
@@ -236,7 +236,7 @@ public static Node castToNeo4JPropertyType(String propertyName, String[] propert
236236 *
237237 * @return true if obj belongs to Primitive Type
238238 *
239- * @since 1.0 .0
239+ * @since 0.1 .0
240240 */
241241 public static boolean checkPrimitiveType (Object obj ) {
242242 return (obj instanceof Byte || obj instanceof Short || obj instanceof Integer || obj instanceof Long
0 commit comments