All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sviolet.slate.common.x.conversion.mapxbean.ConversionPath Maven / Gradle / Ivy

There is a newer version: 22.1.0
Show newest version
/*
 * Copyright (C) 2015-2020 S.Violet
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * Project GitHub: https://github.com/shepherdviolet/slate
 * Email: [email protected]
 */

package sviolet.slate.common.x.conversion.mapxbean;

import java.lang.reflect.Type;

/**
 * 

Keep track of what node is currently converting, and you can get the parent nodes, up to the root node. * It represents the conversion path of current process.

* *

WARNING! Please NO NOT hold this object for a long time, otherwise it will cause a memory leak.

* * @author S.Violet * @see MapXBean */ public class ConversionPath { private final String propertyName; private final Class fromClass; private final Class toClass; private final Type toType; private final ConversionPath parentNode; private final int depth; private boolean inflated = false; public ConversionPath(String propertyName, Class fromClass, Class toClass, Type toType, ConversionPath parentNode) { this.propertyName = propertyName; this.fromClass = fromClass; this.toClass = toClass; this.toType = toType; this.parentNode = parentNode; this.depth = parentNode != null ? parentNode.depth + 1 : 0; } /** * Nullable. The property name of the current node in its parent. * Root node has no property name. */ public String propertyName() { return propertyName; } /** * Current node is convert from this class */ public Class fromClass() { return fromClass; } /** * Current node is convert to this class */ public Class toClass() { return toClass; } /** * Current node is convert to this generic type */ public Type toType() { return toType; } /** * Nullable. Get parent node. * Root node has no parent node. */ public ConversionPath parentNode() { return parentNode; } /** * Current conversion depth, starting from 0. * Depth of root node is 0, and it's properties is 1 ... */ public int depth() { return depth; } /** * Is it an inflated node (The property is inflated to Map) * *

References:


* *

In the scene of Bean -> Map. While a Bean is converting to a Map, all the properties of Bean will keep the * original type by default, unless {@link BeanToMapInflateStrategy} tells the program that it needs to be inflated * (this method returns true). * 'Inflate' means that in the scene of Bean -> Map, if a property (of Java Bean) or an element (of Collection) is * a Java Bean (judged by {@link MxbTypeJudger#isBean}), the property (or element) can be converted to a Map as long * as the method {@link BeanToMapInflateStrategy#needToBeInflated} returns true. The process of converting property * (or element) to Map is called 'Inflate'.


*/ public boolean isInflated() { return inflated; } /** * Mark as inflated node */ void setInflated(boolean inflated) { this.inflated = inflated; } @Override public String toString() { return (parentNode != null ? parentNode.toString() + "->" : "") + (propertyName != null ? propertyName : "root"); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy