com.android.sdklib.repository.MajorRevision Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdklib Show documentation
Show all versions of sdklib Show documentation
A library to parse and download the Android SDK.
/*
* Copyright (C) 2012 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 com.android.sdklib.repository;
import com.android.annotations.NonNull;
/**
* Package revision number composed of a single major revision.
*
* Contrary to a {@link FullRevision}, a {@link MajorRevision} does not
* provide minor, micro and preview revision numbers -- these are all
* set to zero.
*/
public class MajorRevision extends FullRevision {
public MajorRevision(FullRevision fullRevision) {
super(fullRevision.getMajor(), IMPLICIT_MINOR_REV, IMPLICIT_MICRO_REV);
}
public MajorRevision(int major) {
super(major, IMPLICIT_MINOR_REV, IMPLICIT_MICRO_REV);
}
@Override
public String toString() {
return super.toShortString();
}
/**
* Parses a single-integer string and returns a new {@link MajorRevision} for it.
*
* @param revision A non-null revision to parse.
* @return A new non-null {@link MajorRevision}.
* @throws NumberFormatException if the parsing failed.
*/
@NonNull
public static MajorRevision parseRevision(@NonNull String revision)
throws NumberFormatException {
FullRevision r = parseRevisionImpl(
revision, false /*supportMinorMicro*/, false /*supportPreview*/,
false /*keepPrecision*/);
return new MajorRevision(r.getMajor());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy