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

org.rythmengine.toString.ToStringOption Maven / Gradle / Ivy

Go to download

A strong typed high performance Java Template engine with .Net Razor like syntax

There is a newer version: 1.4.2
Show newest version
/**
 * Copyright (C) 2013-2016 The Rythm Engine project
 * for LICENSE and other details see:
 * https://github.com/rythmengine/rythmengine
 */
package org.rythmengine.toString;

import org.rythmengine.Rythm;
import org.rythmengine.utils.S;

import java.io.Serializable;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
 * Defines the options can be set when output an object into string
 */
public class ToStringOption implements Serializable {

    /**
     * Construct an new default option
     *
     * @see #DEFAULT_OPTION
     */
    public ToStringOption() {
    }

    /**
     * Construct an option with specified appendStatic and appendTransient switch.
     *
     * @param appendStatic    when set to true the static fields will be output
     * @param appendTransient when set to true the transient fields will be output
     */
    public ToStringOption(boolean appendStatic, boolean appendTransient) {
        this.appendStatic = appendStatic;
        this.appendTransient = appendTransient;
    }

    /**
     * Construct an option with static, transient output switch and upToClass
     *
     * @param appendStatic    when set to true the static fields will be output
     * @param appendTransient when set to true the trasient fields will be output
     * @param upToClass       when set then the fields up to this parent class will be output,
     *                        otherwise it will be up to {@link java.lang.Object} root
     */
    public ToStringOption(boolean appendStatic, boolean appendTransient, Class upToClass) {
        this.appendStatic = appendStatic;
        this.appendTransient = appendTransient;
        this.upToClass = upToClass;
    }

    /**
     * The default option instance, with
     * 
    *
  • {@link #upToClass}set to null, meaning up to {@link java.lang.Object} root
  • *
  • {@link #appendTransient} set to false, will not output transient fields
  • *
  • {@link #appendStatic} set to false, will not output static fields
  • *
*/ public static final ToStringOption DEFAULT_OPTION = new ToStringOption(); /** * Specify the up most parent class whose declared fields will be output. * Default value is null, meaning all parent class declared * fields will be output */ public Class upToClass = null; /** * Whether output transient fields */ public boolean appendTransient = false; /** * Whether output static fields */ public boolean appendStatic = false; /** * Return a ToStringOption instance with {@link #appendTransient} option set. * if the current instance is not {@link #DEFAULT_OPTION default instance} then set * on the current instance and return the current instance. Otherwise, clone the default * instance and set on the clone and return the clone * * @param appendTransient * @return this option instance or clone if this is the {@link #DEFAULT_OPTION} */ public ToStringOption setAppendTransient(boolean appendTransient) { ToStringOption op = this; if (this == DEFAULT_OPTION) { op = new ToStringOption(this.appendStatic, this.appendTransient); } op.appendTransient = appendTransient; return op; } /** * Return a ToStringOption instance with {@link #appendStatic} option set. * if the current instance is not {@link #DEFAULT_OPTION default instance} then set * on the current instance and return the current instance. Otherwise, clone the default * instance and set on the clone and return the clone * * @param appendStatic * @return this option instance or clone if this is the {@link #DEFAULT_OPTION} */ public ToStringOption setAppendStatic(boolean appendStatic) { ToStringOption op = this; if (this == DEFAULT_OPTION) { op = new ToStringOption(this.appendStatic, this.appendTransient); } op.appendStatic = appendStatic; return op; } /** * Return a ToStringOption instance with {@link #upToClass} option set. * if the current instance is not {@link #DEFAULT_OPTION default instance} then set * on the current instance and return the current instance. Otherwise, clone the default * instance and set on the clone and return the clone * * @param c * @return this option instance or clone if this is the {@link #DEFAULT_OPTION} */ public ToStringOption setUpToClass(Class c) { ToStringOption op = this; if (this == DEFAULT_OPTION) { op = new ToStringOption(this.appendStatic, this.appendTransient); } op.upToClass = c; return op; } /** * Print this to string option instance using the following logic: *

*


     * return Rythm.toString(
     *    "{appendStatic: @_.appendStatic; " +
     *    "appendTransient: @_.appendTransient; " +
     *    upToClass: @_.upToClass?.getName()}", this);
     * 
* * @return String representation of this option */ @Override public String toString() { return Rythm.toString("{appendStatic: @_.appendStatic; appendTransient: @_.appendTransient; upToClass: @_.upToClass?.getName()}", this); } @Override public int hashCode() { return (31 + Boolean.valueOf(appendTransient).hashCode()) * 17 + Boolean.valueOf(appendStatic).hashCode(); } @Override public boolean equals(Object obj) { if (obj == this) return true; if (obj instanceof ToStringOption) { ToStringOption that = (ToStringOption) obj; return that.appendStatic == this.appendStatic && that.appendTransient == this.appendTransient; } return false; } /** * Construct a ToStringOption instance out from a string. The format * of the String should be the same as the format output of {@link #toString()} * method * * @param s * @return an option instance corresponding to the string specified */ public static ToStringOption valueOf(String s) { Pattern p = Pattern.compile("\\{appendStatic *\\: *(true|false) *; *appendTransient *\\: *(true|false) *; *upToClass *: *(.*)\\}"); Matcher m = p.matcher(s); if (!m.matches()) throw new IllegalArgumentException("Unknown ToStringOption: " + s); boolean appendStatic = Boolean.valueOf(m.group(1)); boolean appendTransient = Boolean.valueOf(m.group(2)); String upToClassStr = m.group(3); Class upToClass; if (S.isEmpty(upToClassStr)) upToClass = null; else try { upToClass = Class.forName(upToClassStr); } catch (ClassNotFoundException e) { throw new IllegalArgumentException("Cannot find upToClass: " + upToClassStr); } return new ToStringOption(appendStatic, appendTransient, upToClass); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy