Example usage for org.apache.commons.lang3.builder ToStringStyle SHORT_PREFIX_STYLE

List of usage examples for org.apache.commons.lang3.builder ToStringStyle SHORT_PREFIX_STYLE

Introduction

In this page you can find the example usage for org.apache.commons.lang3.builder ToStringStyle SHORT_PREFIX_STYLE.

Prototype

ToStringStyle SHORT_PREFIX_STYLE

To view the source code for org.apache.commons.lang3.builder ToStringStyle SHORT_PREFIX_STYLE.

Click Source Link

Document

The short prefix toString style.

Usage

From source file:org.diorite.ImmutableLocation.java

@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).appendSuper(super.toString())
            .append("x", this.x).append("y", this.y).append("z", this.z).append("yaw", this.yaw)
            .append("pitch", this.pitch).toString();
}

From source file:org.diorite.impl.auth.GameProfileImpl.java

@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).appendSuper(super.toString())
            .append("id", this.id).append("name", this.name).append("properties", this.properties)
            .append("legacy", this.legacy).toString();
}

From source file:org.diorite.impl.auth.properties.ProfileTexture.java

@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).appendSuper(super.toString())
            .append("url", this.url).append("metadata", this.metadata).toString();
}

From source file:org.diorite.impl.auth.properties.PropertyImpl.java

@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).appendSuper(super.toString())
            .append("name", this.name).append("value", this.value).append("signature", this.signature)
            .toString();/*  www .  j  a va 2s . c o  m*/
}

From source file:org.diorite.impl.auth.yggdrasil.request.JoinServerRequest.java

@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).appendSuper(super.toString())
            .append("accessToken", this.accessToken).append("selectedProfile", this.selectedProfile)
            .append("serverId", this.serverId).toString();
}

From source file:org.diorite.impl.auth.yggdrasil.request.ProfileSearchRequest.java

@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).appendSuper(super.toString())
            .append("nicknames", this.nicknames).toString();
}

From source file:org.diorite.impl.auth.yggdrasil.response.HasJoinedResponse.java

@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).appendSuper(super.toString())
            .append("id", this.id).append("properties", this.properties).toString();
}

From source file:org.diorite.impl.auth.yggdrasil.response.ProfileResponse.java

@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).appendSuper(super.toString())
            .append("id", this.id).append("name", this.name).append("properties", this.properties).toString();
}

From source file:org.diorite.impl.auth.yggdrasil.response.ProfileSearchResultsResponse.java

@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).appendSuper(super.toString())
            .append("profiles", this.profiles).toString();
}

From source file:org.diorite.impl.auth.yggdrasil.response.Response.java

@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).appendSuper(super.toString())
            .append("error", this.error).append("errorMessage", this.errorMessage).append("cause", this.cause)
            .toString();// w w  w .j  a  v  a 2s  . c o  m
}