public class

CLObject

extends CLContainer

implements java.lang.Iterable<CLKey>

 java.lang.Object

androidx.constraintlayout.core.parser.CLElement

androidx.constraintlayout.core.parser.CLContainer

↳androidx.constraintlayout.core.parser.CLObject

Gradle dependencies

compile group: 'androidx.constraintlayout', name: 'constraintlayout-core', version: '1.1.0-alpha01'

  • groupId: androidx.constraintlayout
  • artifactId: constraintlayout-core
  • version: 1.1.0-alpha01

Artifact androidx.constraintlayout:constraintlayout-core:1.1.0-alpha01 it located at Google repository (https://maven.google.com/)

Summary

Fields
from CLElementmContainer, mEnd, mStart, sBaseIndent, sMaxLine
Constructors
publicCLObject(char[] content[])

Methods
public static CLObjectallocate(char[] content[])

Allocate a CLObject around an array of chars

public java.util.Iterator<CLKey>iterator()

public java.lang.StringtoFormattedJSON()

Returns a object as a formatted JSON5 String

public java.lang.StringtoFormattedJSON(int indent, int forceIndent)

Returns as a formatted JSON5 String with an indentation

public java.lang.StringtoJSON()

Returns objet as a JSON5 String

from CLContaineradd, get, get, getArray, getArray, getArrayOrNull, getBoolean, getBoolean, getFloat, getFloat, getFloatOrNaN, getInt, getInt, getObject, getObject, getObjectOrNull, getOrNull, getOrNull, getString, getString, getStringOrNull, getStringOrNull, has, names, put, putNumber, remove, size, toString
from CLElementaddIndent, content, getContainer, getDebugName, getEnd, getFloat, getInt, getLine, getStart, getStrClass, isDone, isStarted, notStarted, setContainer, setEnd, setLine, setStart
from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Constructors

public CLObject(char[] content[])

Methods

public static CLObject allocate(char[] content[])

Allocate a CLObject around an array of chars

public java.lang.String toJSON()

Returns objet as a JSON5 String

public java.lang.String toFormattedJSON()

Returns a object as a formatted JSON5 String

public java.lang.String toFormattedJSON(int indent, int forceIndent)

Returns as a formatted JSON5 String with an indentation

public java.util.Iterator<CLKey> iterator()

Source

/*
 * Copyright (C) 2021 The Android Open Source Project
 *
 * 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.
 */
package androidx.constraintlayout.core.parser;

import java.util.Iterator;

public class CLObject extends CLContainer implements Iterable<CLKey> {

    public CLObject(char[] content) {
        super(content);
    }

    /**
     * Allocate a CLObject around an array of chars
     */
    public static CLObject allocate(char[] content) {
        return new CLObject(content);
    }

    /**
     * Returns objet as a JSON5 String
     */
    public String toJSON() {
        StringBuilder json = new StringBuilder(getDebugName() + "{ ");
        boolean first = true;
        for (CLElement element : mElements) {
            if (!first) {
                json.append(", ");
            } else {
                first = false;
            }
            json.append(element.toJSON());
        }
        json.append(" }");
        return json.toString();
    }

    /**
     * Returns a object as a formatted JSON5 String
     */
    public String toFormattedJSON() {
        return toFormattedJSON(0, 0);
    }

    /**
     * Returns as a formatted JSON5 String with an indentation
     */
    public String toFormattedJSON(int indent, int forceIndent) {
        StringBuilder json = new StringBuilder(getDebugName());
        json.append("{\n");
        boolean first = true;
        for (CLElement element : mElements) {
            if (!first) {
                json.append(",\n");
            } else {
                first = false;
            }
            json.append(element.toFormattedJSON(indent + sBaseIndent, forceIndent - 1));
        }
        json.append("\n");
        addIndent(json, indent);
        json.append("}");
        return json.toString();
    }

    @Override
    public Iterator<CLKey> iterator() {
        return new CLObjectIterator(this);
    }

    private class CLObjectIterator implements Iterator<CLKey> {
        CLObject mObject;
        int mIndex = 0;

        CLObjectIterator(CLObject clObject) {
            mObject = clObject;
        }

        @Override
        public boolean hasNext() {
            return mIndex < mObject.size();
        }

        @Override
        public CLKey next() {
            CLKey key = (CLKey) mObject.mElements.get(mIndex);
            mIndex++;
            return key;
        }
    }
}